結果
問題 | No.1651 Removing Cards |
ユーザー | Kude |
提出日時 | 2021-08-20 22:57:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 432 ms / 2,000 ms |
コード長 | 529 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 102,272 KB |
最終ジャッジ日時 | 2024-10-14 05:53:25 |
合計ジャッジ時間 | 12,941 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
k, q = map(int, input().split()) d = [(1, 2)] RMX = 10 ** 18 while d[-1][1] <= RMX: l, r = d[-1] nl = (k * l - 1) // (k - 1) + 1 nr = (k * r - 1) // (k - 1) + 1 if r != nl: print(k, l, r, nl, nr) assert(r == nl) d.append((nl, nr)) for _ in range(q): n = int(input()) l = 0 r = len(d) while True: c = (l + r) // 2 lc, rc = d[c] if lc <= n < rc: print(lc) break if n < lc: r = c else: l = c + 1