結果

問題 No.2757 Pin Game
ユーザー トミートミー
提出日時 2024-05-17 21:38:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 134,704 KB
最終ジャッジ日時 2024-05-17 21:38:18
合計ジャッジ時間 1,708 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,912 KB
testcase_01 AC 44 ms
54,624 KB
testcase_02 AC 44 ms
54,596 KB
testcase_03 AC 42 ms
53,836 KB
testcase_04 AC 155 ms
134,704 KB
testcase_05 AC 128 ms
122,288 KB
testcase_06 AC 41 ms
54,256 KB
testcase_07 AC 43 ms
55,416 KB
testcase_08 AC 43 ms
53,812 KB
testcase_09 AC 43 ms
54,424 KB
testcase_10 AC 83 ms
93,100 KB
testcase_11 AC 83 ms
93,580 KB
権限があれば一括ダウンロードができます

ソースコード

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