結果

問題 No.1651 Removing Cards
ユーザー ayaoniayaoni
提出日時 2021-08-20 22:29:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 1,115 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 97,536 KB
最終ジャッジ日時 2024-10-14 04:25:32
合計ジャッジ時間 7,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 64 ms
72,448 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 43 ms
51,968 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 43 ms
52,480 KB
testcase_09 AC 114 ms
75,648 KB
testcase_10 AC 112 ms
75,904 KB
testcase_11 AC 110 ms
76,416 KB
testcase_12 AC 110 ms
75,776 KB
testcase_13 AC 114 ms
76,032 KB
testcase_14 AC 114 ms
75,648 KB
testcase_15 AC 170 ms
95,360 KB
testcase_16 AC 171 ms
95,360 KB
testcase_17 AC 172 ms
95,232 KB
testcase_18 AC 170 ms
95,488 KB
testcase_19 AC 183 ms
94,976 KB
testcase_20 AC 185 ms
94,720 KB
testcase_21 AC 169 ms
95,488 KB
testcase_22 AC 142 ms
97,408 KB
testcase_23 AC 105 ms
75,520 KB
testcase_24 AC 98 ms
75,904 KB
testcase_25 AC 149 ms
97,536 KB
testcase_26 AC 146 ms
95,104 KB
testcase_27 AC 169 ms
97,536 KB
testcase_28 AC 171 ms
97,408 KB
testcase_29 AC 172 ms
97,536 KB
testcase_30 AC 174 ms
97,536 KB
testcase_31 AC 176 ms
97,408 KB
testcase_32 AC 106 ms
76,160 KB
testcase_33 AC 107 ms
75,904 KB
testcase_34 AC 107 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


K,Q = MI()

X = [1]
while True:
    x = X[-1]
    new_x = (x*K+K-2)//(K-1)
    X.append(new_x)
    if new_x > 10**18:
        break
len_X = len(X)

for _ in range(Q):
    N = I()
    ok = 0
    ng = len_X
    while ok+1 < ng:
        mid = (ok+ng)//2
        if X[mid] <= N:
            ok = mid
        else:
            ng = mid
    ans = X[ok]
    print(ans)

'''
K = 4
for i in range(2,1001):
    X = [j for j in range(1,i+1)]
    while True:
        len_X = len(X)
        new_X = []
        for j in range(len_X):
            if j % K != 0:
                new_X.append(X[j])
        X = new_X
        if len(X) == 1:
            break
    print(X[0],i)
'''
0