Atcoder ABC397 题解 ABC397 A 直接判温度在哪个区间内即可。 submission. B 因为s的长度只有100,所以直接暴力地循环,每轮找到第一个不符合要求的字符,在它前面插入i或者o即可,显然插入有O(n)轮,故总时间复杂度O(n2)。 submission. C 省流:F 的弱化版。
· [题解]AtCoder Beginner Contest 397(ABC397) A~F · [题解]AtCoder Beginner Contest 398(ABC398) A~F · ABC397 · [题解]AtCoder Beginner Contest 394(ABC394) A~G 阅读排行: · 短信接口被刷爆:我用Nginx临时止血 · .NET 平台上的开源模型训练与推理进展 · Google发布A2A开源协...
using namespace std; double x; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> x; if (x >= 38.0) { cout << 1; return 0; } else if (x >= 37.5) { cout << 2; return 0; } else { cout << 3; return 0; } return 0; } 1. 2. 3. 4. ...
题目地址:https://atcoder.jp/contests/abc397/tasks ABC397题解(文字版) === 题库地址:https://atcoder.jp 针对每周六20:00举办的ABC比赛,我们每周日都会对比赛直播。
AtCoder Beginner Contest 397 A-F 简易题解,如果题解中有什么问题可以找我反馈,谢谢! A.Thermometer 完全按照题目意思判断 种情况即可。 int main(){ double x; cin >> x; if(x >= 38.0) cout << 1 << endl; else if(x >…阅读全文 赞同21 添加评论 分享收藏 ...
AtCoder Beginner Contest 397 A~F 讲解 21:11 Educational Codeforces Round 176 (Rated for Div. 2) D 讲解 04:59 AtCoder Beginner Contest 397 G 讲解 06:01 Codeforces Global Round 23 ABCDF 讲解 14:28 AtCoder Beginner Contest 398 A~F 讲解 08:31 AtCoder Beginner Contest 400 A~F ...
AtCoder Beginner Contest 397 G 讲解 06:01 Codeforces Global Round 23 ABCDF 讲解 14:28 AtCoder Beginner Contest 398 A~F 讲解 08:31 AtCoder Beginner Contest 400 A~F 讲解 16:10 AtCoder Beginner Contest 401 ABCDEF 讲解 12:04 AtCoder Beginner Contest 400,401 G 题讲解 12:53 At...
A - Rearranging ABC#include <bits/stdc++.h> using ll = long long; int main() { std::ios::sync_with_stdio(false); std::cin.tie(0); std::strin… 阅读全文 AtCoder Beginner Contest 376 A - F 阅读全文 AtCoder Beginner Contest 375 A - G ...
AtCoder ABC397 直播,揭示编程竞赛的成功秘诀! 每年的编程竞赛如潮水般涌来,而如何在这场智力与技术的较量中脱颖而出,成为每一个参与者心中不断追寻的目标。就在本周六(3月16日)19:00,AtCoder Beginner Contest 397(简称ABC397)将再度拉开帷幕,此事件吸引了无数计算机科学爱好者与在校学生的目光。为了帮助选手...
397 398 399 400 ABC_別解 AGC AHC ARC EDPC OTHERS memo 競プロ典型90題 精選100問 comfused.md readme.md Breadcrumbs atcoder_codes /ABC /300 / 321/ Directory actions More options Latest commit Cannot retrieve latest commit at this time. HistoryHistory Folders and files Name Last commit messag...