結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,880 KB
testcase_01 AC 39 ms
52,520 KB
testcase_02 AC 39 ms
51,740 KB
testcase_03 AC 39 ms
52,552 KB
testcase_04 AC 126 ms
119,184 KB
testcase_05 AC 122 ms
119,848 KB
testcase_06 AC 39 ms
52,500 KB
testcase_07 AC 41 ms
53,184 KB
testcase_08 AC 40 ms
52,412 KB
testcase_09 AC 41 ms
52,476 KB
testcase_10 AC 68 ms
84,820 KB
testcase_11 AC 68 ms
83,744 KB
権限があれば一括ダウンロードができます

ソースコード

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