結果

問題 No.1666 累乗数
ユーザー とりゐとりゐ
提出日時 2021-09-03 14:35:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 724 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-09 00:57:55
合計ジャッジ時間 14,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
76,656 KB
testcase_01 AC 670 ms
77,172 KB
testcase_02 AC 675 ms
77,164 KB
testcase_03 AC 674 ms
77,568 KB
testcase_04 AC 669 ms
77,388 KB
testcase_05 AC 636 ms
76,800 KB
testcase_06 AC 623 ms
76,928 KB
testcase_07 AC 625 ms
76,928 KB
testcase_08 AC 633 ms
76,928 KB
testcase_09 AC 661 ms
76,912 KB
testcase_10 AC 651 ms
77,208 KB
testcase_11 AC 664 ms
77,000 KB
testcase_12 AC 659 ms
77,196 KB
testcase_13 AC 629 ms
77,056 KB
testcase_14 AC 629 ms
76,928 KB
testcase_15 AC 639 ms
77,236 KB
testcase_16 AC 625 ms
77,312 KB
testcase_17 AC 649 ms
77,112 KB
testcase_18 AC 651 ms
77,444 KB
testcase_19 AC 651 ms
77,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
 k,n,o=int(input()),0,2**63
 while o-n>1:
  m,c=(o+n)//2,[0]*60
  for i in range(59,1,-1):
   N,O=int(2**(63/i))+1,0
   while N-O>1:
    M=(N+O)//2
    if M**i<=m:O=M
    else:N=M
   c[i]=O-1-sum(c[::i])
  if sum(c)+1>=k:o=m
  else:n=m
 print(o)
0