結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,536 KB
testcase_01 WA -
testcase_02 AC 31 ms
52,988 KB
testcase_03 AC 31 ms
52,840 KB
testcase_04 AC 108 ms
119,272 KB
testcase_05 AC 105 ms
120,184 KB
testcase_06 AC 33 ms
52,136 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
52,632 KB
testcase_10 WA -
testcase_11 AC 57 ms
84,876 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