結果

問題 No.2757 Pin Game
ユーザー noriocnorioc
提出日時 2024-05-17 23:04:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 120,396 KB
最終ジャッジ日時 2024-05-17 23:04:44
合計ジャッジ時間 2,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,316 KB
testcase_01 AC 34 ms
53,416 KB
testcase_02 AC 32 ms
52,456 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 116 ms
119,480 KB
testcase_05 AC 112 ms
120,396 KB
testcase_06 AC 34 ms
53,776 KB
testcase_07 AC 33 ms
52,260 KB
testcase_08 AC 33 ms
52,580 KB
testcase_09 AC 33 ms
52,484 KB
testcase_10 AC 60 ms
84,244 KB
testcase_11 AC 59 ms
84,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60
N, K = map(int, input().split())
X = list(map(int, input().split()))

ans = 0
prev = -INF
for x in X:
    if x - prev >= K:
        prev = x
        ans += 1

print(ans)
0