結果

問題 No.2757 Pin Game
ユーザー pluto77pluto77
提出日時 2024-05-19 11:33:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 120,480 KB
最終ジャッジ日時 2024-05-19 11:33:11
合計ジャッジ時間 2,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,068 KB
testcase_01 AC 32 ms
54,304 KB
testcase_02 AC 31 ms
52,744 KB
testcase_03 AC 32 ms
52,432 KB
testcase_04 AC 110 ms
119,192 KB
testcase_05 AC 108 ms
120,480 KB
testcase_06 AC 32 ms
52,624 KB
testcase_07 AC 32 ms
53,620 KB
testcase_08 AC 33 ms
52,788 KB
testcase_09 AC 32 ms
52,884 KB
testcase_10 AC 59 ms
85,024 KB
testcase_11 AC 58 ms
83,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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