結果

問題 No.2757 Pin Game
ユーザー fiblonariafiblonaria
提出日時 2024-05-31 07:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 119,812 KB
最終ジャッジ日時 2024-05-31 07:23:22
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,496 KB
testcase_01 AC 37 ms
53,044 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 38 ms
53,556 KB
testcase_04 AC 124 ms
118,936 KB
testcase_05 AC 117 ms
119,812 KB
testcase_06 AC 38 ms
52,416 KB
testcase_07 AC 38 ms
52,744 KB
testcase_08 AC 38 ms
53,048 KB
testcase_09 AC 39 ms
52,860 KB
testcase_10 AC 65 ms
84,144 KB
testcase_11 AC 64 ms
83,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def count_pins(N, K, X):
    X.sort()
    count = 0
    prev = X[0]
    for i in range(1, N):
        if X[i] - prev >= K:
            count += 1
            prev = X[i]
    return count + 1


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

result = count_pins(N, K, X)
print(result)
0