結果

問題 No.1651 Removing Cards
ユーザー Kiri8128Kiri8128
提出日時 2021-08-20 22:33:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,480 KB
最終ジャッジ日時 2024-10-14 04:33:55
合計ジャッジ時間 8,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 57 ms
65,408 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 40 ms
52,864 KB
testcase_09 AC 155 ms
77,312 KB
testcase_10 AC 155 ms
77,568 KB
testcase_11 AC 160 ms
77,696 KB
testcase_12 AC 157 ms
77,696 KB
testcase_13 AC 161 ms
77,696 KB
testcase_14 AC 162 ms
77,696 KB
testcase_15 AC 219 ms
100,352 KB
testcase_16 AC 218 ms
100,352 KB
testcase_17 AC 227 ms
100,480 KB
testcase_18 AC 224 ms
100,480 KB
testcase_19 AC 219 ms
100,096 KB
testcase_20 AC 222 ms
100,352 KB
testcase_21 AC 219 ms
100,480 KB
testcase_22 AC 182 ms
99,584 KB
testcase_23 AC 153 ms
77,184 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 212 ms
100,480 KB
testcase_28 AC 213 ms
100,352 KB
testcase_29 AC 228 ms
95,120 KB
testcase_30 AC 230 ms
93,444 KB
testcase_31 AC 225 ms
94,020 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right as br
K, Q = map(int, input().split())
A = [int(input()) for _ in range(Q)]
ma = max(A)
L = []
i = 0
while i <= ma:
    p = i // K + 1
    i += p
    n = i // K + 1
    while n > p:
        i += n - p
        p = n
        n = i // K + 1
    L.append(i + 1)
for a in A:
    print(L[br(L, a)-1])
0