結果

問題 No.2757 Pin Game
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-21 16:42:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 121 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 120,024 KB
最終ジャッジ日時 2024-09-21 16:42:45
合計ジャッジ時間 2,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 125 ms
119,192 KB
testcase_05 AC 133 ms
120,024 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 80 ms
83,712 KB
testcase_11 AC 74 ms
83,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
y=list(map(int,input().split()))
p=-10**10
c=0
for v in y:
	if v-p>=k:
		p=v
		c+=1
print(c)
0