結果

問題 No.1651 Removing Cards
ユーザー hir355hir355
提出日時 2021-08-20 22:32:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 98,048 KB
最終ジャッジ日時 2024-10-14 04:31:57
合計ジャッジ時間 12,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 55 ms
72,576 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 42 ms
52,608 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 41 ms
52,608 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 42 ms
52,480 KB
testcase_09 AC 312 ms
76,268 KB
testcase_10 AC 316 ms
76,160 KB
testcase_11 AC 310 ms
76,332 KB
testcase_12 AC 319 ms
75,716 KB
testcase_13 AC 319 ms
76,160 KB
testcase_14 AC 320 ms
76,032 KB
testcase_15 AC 391 ms
97,988 KB
testcase_16 AC 383 ms
94,804 KB
testcase_17 AC 393 ms
95,104 KB
testcase_18 AC 393 ms
95,320 KB
testcase_19 AC 386 ms
94,872 KB
testcase_20 AC 386 ms
95,184 KB
testcase_21 AC 383 ms
95,212 KB
testcase_22 AC 345 ms
97,604 KB
testcase_23 AC 314 ms
75,788 KB
testcase_24 AC 295 ms
75,940 KB
testcase_25 AC 349 ms
97,460 KB
testcase_26 AC 351 ms
95,440 KB
testcase_27 AC 382 ms
97,536 KB
testcase_28 AC 382 ms
98,048 KB
testcase_29 AC 396 ms
97,588 KB
testcase_30 AC 389 ms
97,640 KB
testcase_31 AC 390 ms
97,792 KB
testcase_32 AC 320 ms
76,320 KB
testcase_33 AC 316 ms
75,792 KB
testcase_34 AC 310 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
k, q = map(int, input().split())
a = [1]
while a[-1] < 1000000000000000000:
    a.append((a[-1] * k - 1) // (k - 1) + 1)
for _ in range(q):
    n = int(input())
    print(a[bisect_right(a, n) - 1])
0