結果

問題 No.3067 +10 Seconds Clock
ユーザー Meso Meso
提出日時 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
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = 0
for i in range(n-1):
    if T > 0:
         T -= t[i]
         while 0 < cnt and T <= 0:
             cnt -= 1
             T += 10
             ans += 1
         if i + 2 in X:
             cnt += 1
         if T <= 0:
             print(-1)
             break
else: 
    print(ans)
0