結果

問題 No.2757 Pin Game
ユーザー なえしらなえしら
提出日時 2024-08-21 22:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 120,248 KB
最終ジャッジ日時 2024-08-21 22:29:29
合計ジャッジ時間 2,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,756 KB
testcase_01 AC 38 ms
52,424 KB
testcase_02 AC 35 ms
52,768 KB
testcase_03 AC 35 ms
52,208 KB
testcase_04 AC 111 ms
119,028 KB
testcase_05 AC 108 ms
120,248 KB
testcase_06 AC 33 ms
53,104 KB
testcase_07 AC 34 ms
52,204 KB
testcase_08 AC 35 ms
52,336 KB
testcase_09 AC 34 ms
52,328 KB
testcase_10 AC 62 ms
83,660 KB
testcase_11 AC 60 ms
84,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = list(map(int, input().split()))

cnt = 0
lst = -2 * 10**9
for x in X:
  if x - lst >= K:
    cnt += 1
    lst = x

print(cnt)
0