結果
問題 | No.1651 Removing Cards |
ユーザー | taiga0629kyopro |
提出日時 | 2021-08-20 23:40:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 502 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 191,616 KB |
最終ジャッジ日時 | 2024-10-14 07:47:03 |
合計ジャッジ時間 | 5,612 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
57,088 KB |
testcase_01 | AC | 43 ms
57,856 KB |
testcase_02 | AC | 656 ms
191,616 KB |
testcase_03 | AC | 46 ms
60,160 KB |
testcase_04 | AC | 47 ms
60,160 KB |
testcase_05 | AC | 48 ms
60,160 KB |
testcase_06 | AC | 50 ms
61,184 KB |
testcase_07 | AC | 46 ms
59,648 KB |
testcase_08 | AC | 49 ms
61,952 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
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 | -- | - |
ソースコード
import sys input = sys.stdin.readline # 文字列入力はするな!! from _collections import defaultdict import sys sys.setrecursionlimit(10**9) k,q=map(int,input().split()) def f(k,n): def g(x): return x-(x-1)//k-1 if n<=k:return n ind=f(k,n-((n-1)//k)-1) mi=0 ma=5*10**18 while ma-mi>1: mid=(ma+mi)//2 if g(mid)>=ind: ma=mid else: mi=mid return ma for _ in range(q): n=int(input()) print(f(k,n))