結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,916 KB
testcase_01 AC 33 ms
52,612 KB
testcase_02 AC 36 ms
52,620 KB
testcase_03 AC 36 ms
52,476 KB
testcase_04 AC 112 ms
119,584 KB
testcase_05 AC 118 ms
120,212 KB
testcase_06 AC 34 ms
53,076 KB
testcase_07 AC 34 ms
52,768 KB
testcase_08 AC 33 ms
53,200 KB
testcase_09 AC 33 ms
52,632 KB
testcase_10 AC 63 ms
84,472 KB
testcase_11 AC 61 ms
83,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = list(map(int, input().split()))
prev = -(1 << 60)
ans = 0
for x in X:
    if x - prev >= K:
        ans += 1
        prev = x
print(ans)
0