結果

問題 No.2757 Pin Game
ユーザー hiro1729hiro1729
提出日時 2024-05-17 21:20:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 122,716 KB
最終ジャッジ日時 2024-05-17 21:20:55
合計ジャッジ時間 1,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,332 KB
testcase_01 AC 36 ms
52,484 KB
testcase_02 AC 37 ms
52,332 KB
testcase_03 AC 37 ms
52,528 KB
testcase_04 AC 147 ms
121,816 KB
testcase_05 AC 117 ms
122,716 KB
testcase_06 AC 37 ms
52,460 KB
testcase_07 AC 37 ms
52,872 KB
testcase_08 AC 37 ms
52,264 KB
testcase_09 AC 36 ms
53,084 KB
testcase_10 AC 64 ms
84,672 KB
testcase_11 AC 63 ms
86,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
x = list(map(int, input().split()))
c = 1
now = x[0]
for i in x[1:]:
	if i - now >= k:
		c += 1
		now = i
print(c)
0