結果
| 問題 | No.2601 Very Poor |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-01-12 21:46:58 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 248 ms / 2,000 ms |
| + 31µs | |
| コード長 | 197 bytes |
| 記録 | |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 21,212 KB |
| 実行使用メモリ | 33,808 KB |
| 最終ジャッジ日時 | 2026-09-06 13:47:01 |
| 合計ジャッジ時間 | 8,870 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 34 |
ソースコード
N,X=map(int,input().split()) A=list(map(int,input().split())) ans=0 tmp=0 i=-N j=-N while j<0 and i-j<N: if tmp>X: tmp-=A[j] j+=1 else: tmp+=A[i] i+=1 if ans<tmp<=X: ans=tmp print(ans)