結果

問題 No.2601 Very Poor
ユーザー ニックネームニックネーム
提出日時 2024-01-12 21:35:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 42,056 KB
最終ジャッジ日時 2024-09-30 06:17:53
合計ジャッジ時間 9,612 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 28 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 388 ms
41,852 KB
testcase_16 AC 388 ms
41,988 KB
testcase_17 AC 393 ms
41,860 KB
testcase_18 AC 382 ms
41,952 KB
testcase_19 AC 388 ms
41,876 KB
testcase_20 AC 396 ms
41,984 KB
testcase_21 AC 390 ms
41,892 KB
testcase_22 AC 390 ms
42,056 KB
testcase_23 AC 385 ms
41,972 KB
testcase_24 AC 380 ms
41,896 KB
testcase_25 AC 394 ms
41,984 KB
testcase_26 AC 418 ms
42,004 KB
testcase_27 AC 382 ms
41,876 KB
testcase_28 AC 386 ms
41,748 KB
testcase_29 AC 399 ms
42,000 KB
testcase_30 AC 385 ms
41,972 KB
testcase_31 AC 390 ms
41,892 KB
testcase_32 AC 395 ms
41,888 KB
testcase_33 AC 392 ms
41,868 KB
testcase_34 AC 392 ms
42,000 KB
testcase_35 AC 29 ms
10,880 KB
testcase_36 AC 29 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
n,x = map(int,input().split())
a = list(map(int,input().split()))
if sum(a)<=x: exit(print(sum(a)))
b = [0]+a+a; ans = 0
for i in range(2*n): b[i+1] += b[i]
for i in range(n):
    j = bisect_right(b,b[i]+x)
    ans = max(ans,b[j-1]-b[i])
print(ans)
0