結果

問題 No.1666 累乗数
ユーザー とりゐとりゐ
提出日時 2021-09-03 14:35:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 77,408 KB
最終ジャッジ日時 2024-12-15 09:05:42
合計ジャッジ時間 13,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
76,468 KB
testcase_01 AC 666 ms
76,984 KB
testcase_02 AC 656 ms
76,976 KB
testcase_03 AC 659 ms
77,136 KB
testcase_04 AC 660 ms
77,344 KB
testcase_05 AC 613 ms
76,944 KB
testcase_06 AC 634 ms
76,840 KB
testcase_07 AC 622 ms
76,972 KB
testcase_08 AC 619 ms
76,836 KB
testcase_09 AC 644 ms
76,972 KB
testcase_10 AC 655 ms
77,024 KB
testcase_11 AC 649 ms
76,936 KB
testcase_12 AC 653 ms
77,148 KB
testcase_13 AC 615 ms
76,932 KB
testcase_14 AC 615 ms
76,760 KB
testcase_15 AC 633 ms
76,932 KB
testcase_16 AC 620 ms
76,508 KB
testcase_17 AC 634 ms
77,408 KB
testcase_18 AC 638 ms
77,088 KB
testcase_19 AC 638 ms
77,032 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