結果

問題 No.2757 Pin Game
ユーザー miya145592miya145592
提出日時 2024-05-17 23:11:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 142,720 KB
最終ジャッジ日時 2024-05-17 23:11:16
合計ジャッジ時間 1,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,404 KB
testcase_01 AC 38 ms
52,668 KB
testcase_02 AC 42 ms
53,892 KB
testcase_03 AC 37 ms
52,332 KB
testcase_04 AC 118 ms
122,068 KB
testcase_05 AC 134 ms
142,720 KB
testcase_06 AC 38 ms
52,460 KB
testcase_07 AC 38 ms
52,200 KB
testcase_08 AC 37 ms
53,560 KB
testcase_09 AC 37 ms
53,016 KB
testcase_10 AC 82 ms
90,088 KB
testcase_11 AC 63 ms
84,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K = map(int, input().split())
X = list(map(int, input().split()))
A = [X[0]]
for x in X[1:]:
    if x-A[-1]>=K:
        A.append(x)
print(len(A))
0