結果

問題 No.2757 Pin Game
ユーザー tkykwtnbtkykwtnb
提出日時 2024-05-17 21:50:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 122,464 KB
最終ジャッジ日時 2024-05-17 21:50:10
合計ジャッジ時間 1,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,228 KB
testcase_01 AC 35 ms
52,376 KB
testcase_02 AC 34 ms
53,560 KB
testcase_03 AC 36 ms
53,276 KB
testcase_04 AC 118 ms
121,896 KB
testcase_05 AC 116 ms
122,464 KB
testcase_06 AC 34 ms
52,128 KB
testcase_07 AC 34 ms
52,196 KB
testcase_08 AC 32 ms
52,760 KB
testcase_09 AC 33 ms
54,320 KB
testcase_10 AC 66 ms
88,704 KB
testcase_11 AC 62 ms
87,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
X=list(map(int,input().split()))
P=[1 for _ in range(N)]
l=0
r=1
while l<N-1:
    while r<N and X[r]-X[l]<K:
        P[r]=0;r+=1
    l=r
    r=l+1
print(sum(P))
0