結果
問題 | No.1651 Removing Cards |
ユーザー | chineristAC |
提出日時 | 2021-08-21 00:01:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 261 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 85,888 KB |
最終ジャッジ日時 | 2024-10-14 08:27:36 |
合計ジャッジ時間 | 9,417 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,344 KB |
testcase_01 | AC | 39 ms
51,840 KB |
testcase_02 | AC | 83 ms
59,008 KB |
testcase_03 | AC | 43 ms
57,600 KB |
testcase_04 | AC | 43 ms
57,984 KB |
testcase_05 | AC | 42 ms
57,728 KB |
testcase_06 | AC | 42 ms
58,368 KB |
testcase_07 | AC | 41 ms
57,728 KB |
testcase_08 | AC | 42 ms
57,984 KB |
testcase_09 | AC | 747 ms
80,896 KB |
testcase_10 | AC | 1,930 ms
81,280 KB |
testcase_11 | AC | 1,235 ms
81,008 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
def solve(n,k): res = 0 while n: res += 1 n -= (n-1)//K + 1 return res import sys input = sys.stdin.readline K,Q = map(int,input().split()) for _ in range(Q): n = int(input()) cnt = solve(n,K) ok = n ng = 0 while ok-ng>1: mid = (ok+ng)//2 if solve(mid,K)==cnt: ok = mid else: ng = mid print(ok)