結果

問題 No.2601 Very Poor
ユーザー ゼットゼット
提出日時 2024-01-12 21:45:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 110,004 KB
最終ジャッジ日時 2024-09-30 06:20:19
合計ジャッジ時間 5,195 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 33 ms
52,736 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 32 ms
52,480 KB
testcase_04 AC 31 ms
52,096 KB
testcase_05 AC 45 ms
64,896 KB
testcase_06 AC 49 ms
65,024 KB
testcase_07 AC 48 ms
65,024 KB
testcase_08 AC 47 ms
66,048 KB
testcase_09 AC 49 ms
66,048 KB
testcase_10 AC 48 ms
65,664 KB
testcase_11 AC 48 ms
65,408 KB
testcase_12 AC 48 ms
65,792 KB
testcase_13 AC 49 ms
65,536 KB
testcase_14 AC 47 ms
65,560 KB
testcase_15 AC 137 ms
109,876 KB
testcase_16 AC 135 ms
109,756 KB
testcase_17 AC 133 ms
109,568 KB
testcase_18 AC 136 ms
109,524 KB
testcase_19 AC 135 ms
109,568 KB
testcase_20 AC 134 ms
109,648 KB
testcase_21 AC 134 ms
109,656 KB
testcase_22 AC 139 ms
109,568 KB
testcase_23 AC 137 ms
110,004 KB
testcase_24 AC 136 ms
109,568 KB
testcase_25 AC 136 ms
109,952 KB
testcase_26 AC 139 ms
109,700 KB
testcase_27 AC 139 ms
109,520 KB
testcase_28 AC 136 ms
109,736 KB
testcase_29 AC 140 ms
109,720 KB
testcase_30 AC 139 ms
109,516 KB
testcase_31 AC 137 ms
109,568 KB
testcase_32 AC 138 ms
109,744 KB
testcase_33 AC 139 ms
109,568 KB
testcase_34 AC 134 ms
109,952 KB
testcase_35 AC 46 ms
65,792 KB
testcase_36 AC 47 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
A=list(map(int,input().split()))
if sum(A)<=X:
  print(sum(A))
  exit()
v=[0]*(2*N+1)
for i in range(1,N+1):
  v[i]=v[i-1]+A[i-1]
for i in range(1,N+1):
  v[i+N]=v[i+N-1]+A[i-1]
from bisect import bisect_right
ans=0
for i in range(N):
  x=v[i]
  pos=bisect_right(v,x+X)
  z=v[pos-1]-x
  ans=max(ans,z)
print(ans)
0