結果

問題 No.1651 Removing Cards
ユーザー mkawa2mkawa2
提出日時 2023-09-21 09:57:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,164 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,376 KB
最終ジャッジ日時 2024-07-07 04:05:20
合計ジャッジ時間 9,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,480 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 45 ms
61,440 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 34 ms
52,736 KB
testcase_06 AC 31 ms
52,608 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 34 ms
52,736 KB
testcase_09 AC 191 ms
85,872 KB
testcase_10 AC 193 ms
85,996 KB
testcase_11 AC 190 ms
85,740 KB
testcase_12 AC 187 ms
86,248 KB
testcase_13 AC 188 ms
85,736 KB
testcase_14 AC 200 ms
85,868 KB
testcase_15 AC 213 ms
86,252 KB
testcase_16 AC 213 ms
86,124 KB
testcase_17 AC 211 ms
85,740 KB
testcase_18 AC 213 ms
85,932 KB
testcase_19 AC 213 ms
85,868 KB
testcase_20 AC 211 ms
86,376 KB
testcase_21 AC 219 ms
86,260 KB
testcase_22 AC 211 ms
84,508 KB
testcase_23 AC 190 ms
84,256 KB
testcase_24 AC 174 ms
84,796 KB
testcase_25 AC 177 ms
85,184 KB
testcase_26 AC 183 ms
85,048 KB
testcase_27 AC 211 ms
85,688 KB
testcase_28 AC 211 ms
86,328 KB
testcase_29 AC 213 ms
85,960 KB
testcase_30 AC 213 ms
86,208 KB
testcase_31 AC 208 ms
86,212 KB
testcase_32 AC 165 ms
86,248 KB
testcase_33 AC 167 ms
85,868 KB
testcase_34 AC 169 ms
85,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 31)
# inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

k,q=LI()
nqi=[]
for qi in range(q):
    n=II()
    nqi.append((n,qi))

nqi.sort(key=lambda x:-x[0])

def d_cnt(p):
    d1=p//(k-1)+1
    return d1,((k-1)*d1-p+d1-1)//d1

ans=[0]*q
p,s=0,1
while nqi:
    d1,c=d_cnt(p)
    d2,c2=d_cnt(s)
    if c2<c:c=c2
    while nqi and nqi[-1][0]<=s+c*d2:
        n,qi=nqi.pop()
        ans[qi]=p+(n-s+d2-1)//d2*d1+1
    p+=d1*c
    s+=d2*c

print(*ans,sep="\n")
0