結果

問題 No.2757 Pin Game
ユーザー トミートミー
提出日時 2024-05-17 21:37:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 134,336 KB
最終ジャッジ日時 2024-05-17 21:37:57
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 41 ms
53,940 KB
testcase_03 AC 41 ms
55,248 KB
testcase_04 WA -
testcase_05 AC 129 ms
122,296 KB
testcase_06 AC 41 ms
53,732 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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:
            if len(l)!=0:
                l[0]+=tmp
            else:
                cnt+=1
            # cnt+=1
        else:
            pass
    print(n-cnt)
            
            
if __name__ == "__main__":
    main()
0