結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

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