結果

問題 No.2757 Pin Game
ユーザー miho-4miho-4
提出日時 2024-08-09 17:38:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 142,032 KB
最終ジャッジ日時 2024-08-09 17:38:55
合計ジャッジ時間 2,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 33 ms
52,692 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 104 ms
119,052 KB
testcase_05 AC 153 ms
142,032 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 33 ms
51,840 KB
testcase_10 AC 66 ms
90,496 KB
testcase_11 AC 60 ms
83,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
L=list(map(int,input().split()))
q=[]
for e in L:
	if q==[]:
		q.append(e)
	else:
		if k<=e-q[-1]:
			q.append(e)
print(len(q))
0