結果
問題 | No.2601 Very Poor |
ユーザー | tipstar0125 |
提出日時 | 2024-01-12 21:48:18 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 115 ms / 2,000 ms |
コード長 | 309 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 82,548 KB |
実行使用メモリ | 110,184 KB |
最終ジャッジ日時 | 2024-09-30 06:20:39 |
合計ジャッジ時間 | 4,535 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
ソースコード
N,X=list(map(int,input().split())) A=list(map(int,input().split())) A*=2 ans=0 cnt=A[0] length=1 r=0 for l in range(2*N): while r+1<2*N and length+1<=N and cnt+A[r+1]<=X: r+=1 cnt+=A[r] length+=1 if cnt<=X and length<=N:ans=max(ans,cnt) length-=1 cnt-=A[l] print(ans)