結果

問題 No.1651 Removing Cards
ユーザー tassei903tassei903
提出日時 2021-08-20 22:45:42
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 992 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,872 KB
最終ジャッジ日時 2024-10-14 04:54:14
合計ジャッジ時間 7,056 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 56 ms
74,880 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 37 ms
52,864 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 120 ms
76,160 KB
testcase_10 AC 117 ms
76,160 KB
testcase_11 AC 116 ms
75,904 KB
testcase_12 AC 118 ms
76,032 KB
testcase_13 AC 122 ms
76,048 KB
testcase_14 AC 129 ms
76,032 KB
testcase_15 AC 182 ms
95,104 KB
testcase_16 AC 193 ms
94,976 KB
testcase_17 AC 180 ms
95,616 KB
testcase_18 AC 186 ms
95,232 KB
testcase_19 AC 186 ms
95,104 KB
testcase_20 AC 181 ms
95,216 KB
testcase_21 AC 184 ms
94,976 KB
testcase_22 AC 152 ms
97,536 KB
testcase_23 AC 110 ms
76,160 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 176 ms
97,664 KB
testcase_28 AC 179 ms
97,872 KB
testcase_29 AC 200 ms
97,716 KB
testcase_30 AC 194 ms
97,792 KB
testcase_31 AC 197 ms
97,764 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes")
no = lambda :print("no");No = lambda :print("No")
inf = 10**16
#######################################################################
k, q = na()

from bisect import *
bl = bisect_left
br = bisect_right


def f(n):
    r = 0
    while True:
        #print(n)
        if n%k==0:
            break
        n = n-(n+k-1)//k
        r+=1
    return r

def g(n):
    r = []
    while n>0:
        r.append(str(n%k))
        n//=k
    return "".join(r[::-1])

def solve(n):
    return 1-ans[bl(ans, -n)]
"""i = 0
j = 1
ans = []
m = -1
N = 10**3
while i<N:
    z = f(i)
    if m<z:
        m = z
        ans.append(i)
    i+=1
"""
dp = [1]
while dp[-1]<=10**18:
    dp.append((dp[-1]*k+k-1)//(k-1))
        
ans = [-i for i in dp][::-1]

for i in range(q):
    n = ni()-1
    print(solve(n))
0