結果

問題 No.2757 Pin Game
ユーザー shobonvipshobonvip
提出日時 2024-05-17 23:42:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 119,692 KB
最終ジャッジ日時 2024-05-17 23:43:14
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,844 KB
testcase_01 AC 33 ms
53,088 KB
testcase_02 AC 33 ms
53,500 KB
testcase_03 AC 34 ms
52,968 KB
testcase_04 AC 107 ms
118,992 KB
testcase_05 AC 105 ms
119,692 KB
testcase_06 AC 34 ms
52,416 KB
testcase_07 AC 34 ms
52,712 KB
testcase_08 AC 32 ms
52,744 KB
testcase_09 AC 32 ms
52,132 KB
testcase_10 AC 58 ms
84,352 KB
testcase_11 AC 57 ms
83,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def max_pins(N, K, X):
    # 最初のピンを選びます
    current_position = X[0]
    count = 1
    
    # ピンのリストを順番に走査します
    for i in range(1, N):
        if X[i] >= current_position + K:
            # 次のピンが条件を満たす場合、選びます
            current_position = X[i]
            count += 1
    
    return count

# 入力値の取得
N, K = map(int, input().split())
X = list(map(int, input().split()))

# 結果の出力
print(max_pins(N, K, X))
0