結果

問題 No.2757 Pin Game
ユーザー anonymouslyanonymously
提出日時 2024-05-17 23:12:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,476 KB
最終ジャッジ日時 2024-05-17 23:12:58
合計ジャッジ時間 2,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 268 ms
43,552 KB
testcase_05 AC 338 ms
44,476 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 136 ms
21,772 KB
testcase_11 AC 109 ms
21,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
X = [int(x) for x in input().split()]

cnt0 = 1
y = X[0]
for i in range(1, n):
    if X[i]-y >= k:
        cnt0 += 1
        y = X[i]

cnt1 = 1
y = X[n-1]
for i in range(n-2, -1, -1):
    if y-X[i] >= k:
        cnt1 += 1
        y = X[i]

print(max(cnt0, cnt1))
0