結果

問題 No.2757 Pin Game
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 16:27:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 120,276 KB
最終ジャッジ日時 2024-06-09 16:27:24
合計ジャッジ時間 1,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,432 KB
testcase_01 AC 34 ms
53,656 KB
testcase_02 AC 33 ms
52,628 KB
testcase_03 AC 34 ms
52,420 KB
testcase_04 AC 113 ms
119,304 KB
testcase_05 AC 108 ms
120,276 KB
testcase_06 AC 33 ms
53,136 KB
testcase_07 AC 35 ms
52,280 KB
testcase_08 AC 32 ms
52,292 KB
testcase_09 AC 33 ms
52,624 KB
testcase_10 AC 59 ms
84,252 KB
testcase_11 AC 58 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
X = list(map(int, input().split()))
now = -10**10
cnt = 0
for x in X:
    if now + k <= x:
        cnt += 1
        now = x
print(cnt)
0