結果

問題 No.2757 Pin Game
ユーザー rlangevinrlangevin
提出日時 2024-05-17 21:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 120,240 KB
最終ジャッジ日時 2024-05-17 21:21:45
合計ジャッジ時間 1,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,684 KB
testcase_01 AC 33 ms
52,192 KB
testcase_02 AC 36 ms
53,216 KB
testcase_03 AC 35 ms
52,132 KB
testcase_04 AC 113 ms
119,116 KB
testcase_05 AC 114 ms
120,240 KB
testcase_06 AC 35 ms
53,608 KB
testcase_07 AC 35 ms
53,716 KB
testcase_08 AC 34 ms
52,680 KB
testcase_09 AC 34 ms
53,972 KB
testcase_10 AC 60 ms
84,672 KB
testcase_11 AC 61 ms
83,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
now = -10 ** 18
for a in A:
    if a >= now + K:
        now = a
        ans += 1
print(ans)
0