結果

問題 No.2757 Pin Game
ユーザー liny_tailliny_tail
提出日時 2024-08-15 11:10:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,320 KB
最終ジャッジ日時 2024-08-15 11:10:26
合計ジャッジ時間 2,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 177 ms
43,412 KB
testcase_05 AC 195 ms
44,320 KB
testcase_06 AC 28 ms
10,496 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 27 ms
10,496 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 AC 81 ms
21,852 KB
testcase_11 AC 77 ms
21,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

lst = [X[0]]
for i in X[1:]:
  if i - lst[-1] >= K:
    lst.append(i)

print(len(lst))
0