結果

問題 No.2757 Pin Game
ユーザー pitPpitP
提出日時 2024-05-17 21:21:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 120,436 KB
最終ジャッジ日時 2024-05-17 21:21:52
合計ジャッジ時間 1,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,708 KB
testcase_01 AC 38 ms
52,572 KB
testcase_02 AC 37 ms
52,492 KB
testcase_03 AC 37 ms
52,356 KB
testcase_04 AC 115 ms
119,328 KB
testcase_05 AC 115 ms
120,436 KB
testcase_06 AC 38 ms
53,852 KB
testcase_07 AC 36 ms
52,736 KB
testcase_08 AC 37 ms
52,868 KB
testcase_09 AC 36 ms
52,868 KB
testcase_10 AC 62 ms
84,096 KB
testcase_11 AC 63 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
l = -(1 << 60)
for i in range(N):
    if X[i] - l >= K:
        ans += 1
        l = X[i]
print(ans)
0