結果
問題 | No.2757 Pin Game |
ユーザー | トミー |
提出日時 | 2024-05-17 21:34:35 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 412 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 82,156 KB |
実行使用メモリ | 135,300 KB |
最終ジャッジ日時 | 2024-12-20 13:21:27 |
合計ジャッジ時間 | 2,216 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,932 KB |
testcase_01 | AC | 44 ms
54,144 KB |
testcase_02 | AC | 44 ms
54,428 KB |
testcase_03 | AC | 44 ms
53,812 KB |
testcase_04 | RE | - |
testcase_05 | AC | 133 ms
121,820 KB |
testcase_06 | AC | 46 ms
53,584 KB |
testcase_07 | AC | 45 ms
54,488 KB |
testcase_08 | AC | 44 ms
53,828 KB |
testcase_09 | RE | - |
testcase_10 | AC | 83 ms
92,916 KB |
testcase_11 | RE | - |
ソースコード
from collections import deque def main(): n,k=map(int,input().split()) x=list(map(int,input().split())) l=deque() for i in range(len(x)-1): l.append(x[i+1]-x[i]) cnt=0 while len(l)!=0: tmp=l.popleft() if tmp<k: l[0]+=tmp cnt+=1 else: pass print(n-cnt) if __name__ == "__main__": main()