結果
問題 | No.3067 +10 Seconds Clock |
ユーザー |
|
提出日時 | 2025-03-24 19:29:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 151 ms / 2,000 ms |
コード長 | 430 bytes |
コンパイル時間 | 398 ms |
コンパイル使用メモリ | 82,472 KB |
実行使用メモリ | 137,504 KB |
最終ジャッジ日時 | 2025-03-24 19:29:55 |
合計ジャッジ時間 | 3,970 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
n, T = map(int, input().split())t = list(map(int, input().split()))K = int(input())x = list(map(int, input().split()))X = set(x)ans = cnt = 0for i in range(n-1):if T > 0:T -= t[i]while 0 < cnt and T <= 0:cnt -= 1T += 10ans += 1if i + 2 in X:cnt += 1if T <= 0:print(-1)breakelse:print(ans)