結果

問題 No.2757 Pin Game
ユーザー ああいいああいい
提出日時 2024-05-23 17:46:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,984 KB
最終ジャッジ日時 2024-12-20 18:55:42
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 WA -
testcase_02 AC 46 ms
52,224 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 123 ms
119,168 KB
testcase_05 AC 127 ms
119,984 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
51,840 KB
testcase_10 WA -
testcase_11 AC 69 ms
84,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())

X = list(map(int,input().split()))

now = 0
ans = 1
for i in range(1,N):
	a = X[i-1]
	b = X[i]
	now += b - a
	if now < K:
		pass
	else:
		ans += 1
		now = 1
print(ans)
0