結果

問題 No.2757 Pin Game
ユーザー ゼットゼット
提出日時 2024-05-17 21:22:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,760 KB
実行使用メモリ 119,848 KB
最終ジャッジ日時 2024-12-20 13:08:56
合計ジャッジ時間 1,768 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
x=A[0]
result=1
for i in range(1,N):
  if A[i]>=x+K:
    result+=1
    x=A[i]
print(result)
0