結果

問題 No.2757 Pin Game
ユーザー PNJPNJ
提出日時 2024-05-17 21:31:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 142,868 KB
最終ジャッジ日時 2024-05-17 21:31:44
合計ジャッジ時間 1,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,096 KB
testcase_01 AC 37 ms
53,424 KB
testcase_02 AC 37 ms
53,148 KB
testcase_03 AC 36 ms
52,488 KB
testcase_04 AC 119 ms
121,768 KB
testcase_05 AC 130 ms
142,868 KB
testcase_06 AC 37 ms
52,440 KB
testcase_07 AC 37 ms
52,348 KB
testcase_08 AC 37 ms
52,308 KB
testcase_09 AC 37 ms
52,288 KB
testcase_10 AC 69 ms
92,048 KB
testcase_11 AC 67 ms
85,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
X = list(map(int,input().split()))
Y = [X.pop()]
while len(X):
  y = Y[-1]
  x = X.pop()
  if y - x >= K:
    Y.append(x)
print(len(Y))
0