結果
問題 | No.2601 Very Poor |
ユーザー | yansi819 |
提出日時 | 2024-04-04 18:12:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 4,169 ms |
コンパイル使用メモリ | 262,272 KB |
実行使用メモリ | 8,392 KB |
最終ジャッジ日時 | 2024-10-01 00:29:38 |
合計ジャッジ時間 | 6,939 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 63 ms
8,036 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 61 ms
8,112 KB |
testcase_19 | AC | 61 ms
8,136 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 62 ms
8,144 KB |
testcase_24 | AC | 61 ms
8,192 KB |
testcase_25 | AC | 62 ms
8,144 KB |
testcase_26 | AC | 62 ms
8,140 KB |
testcase_27 | AC | 62 ms
8,012 KB |
testcase_28 | AC | 61 ms
8,140 KB |
testcase_29 | AC | 62 ms
8,264 KB |
testcase_30 | AC | 61 ms
8,144 KB |
testcase_31 | AC | 60 ms
8,220 KB |
testcase_32 | AC | 61 ms
8,144 KB |
testcase_33 | AC | 62 ms
8,140 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; using mint = modint998244353; ll N, X, A[202020], sum[404040]; int main() { cin >> N >> X; for (int i = 0; i < N; i++) cin >> A[i]; for (int i = 0; i < 2 * N; i++) { sum[i + 1] = sum[i] + A[i % N]; } ll ans = 0; int r = 0; for (int l = 0; l < 2 * N; l++) { while (r < 2 * N && sum[r + 1] - sum[l] < X) { ans = max(ans, sum[r + 1] - sum[l]); r++; } } cout << ans << endl; return 0; }