2023/10/05/acm/codeforces/CodeforcesRound900/ #9
Replies: 1 comment 1 reply
-
|
好厉害! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
2023/10/05/acm/codeforces/CodeforcesRound900/
A. How Much Does Daytona Cost?大致题意给出一个数组和一个数字,问数组内是否存在某个子区间,使得给出的值出现次数最多 思路只有一个值也是子区间,只有它出现也是出现,所以只需要判断是否存在即可 AC code123456789101112131415void solve() { int _; cin >> _; for (int t
https://blog.mauve.icu/2023/10/05/acm/codeforces/CodeforcesRound900/
Beta Was this translation helpful? Give feedback.
All reactions