結果

問題 No.1666 累乗数
ユーザー asumo0729asumo0729
提出日時 2021-09-14 21:07:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,216 ms / 2,000 ms
コード長 1,314 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 271,616 KB
最終ジャッジ日時 2024-06-27 12:28:27
合計ジャッジ時間 26,059 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,199 ms
271,228 KB
testcase_01 AC 1,216 ms
271,108 KB
testcase_02 AC 1,206 ms
271,484 KB
testcase_03 AC 1,199 ms
271,504 KB
testcase_04 AC 1,173 ms
271,484 KB
testcase_05 AC 1,190 ms
271,220 KB
testcase_06 AC 1,194 ms
271,488 KB
testcase_07 AC 1,182 ms
271,232 KB
testcase_08 AC 1,185 ms
271,360 KB
testcase_09 AC 1,179 ms
271,616 KB
testcase_10 AC 1,182 ms
271,616 KB
testcase_11 AC 1,174 ms
271,224 KB
testcase_12 AC 1,183 ms
271,220 KB
testcase_13 AC 1,200 ms
271,348 KB
testcase_14 AC 1,187 ms
271,096 KB
testcase_15 AC 1,182 ms
271,228 KB
testcase_16 AC 1,167 ms
271,612 KB
testcase_17 AC 1,164 ms
271,612 KB
testcase_18 AC 1,170 ms
271,228 KB
testcase_19 AC 1,204 ms
271,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
import bisect
stdin=sys.stdin
sys.setrecursionlimit(10 ** 8)

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
eps = 1e-9
sortkey = itemgetter(0)

Max = 10 ** 18

def hantei(x):
    y = int(x ** (1 / 2))
    return y ** 2 == x

def f(x):
    ok = 1
    ng = 10 ** 9 + 1
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if mid ** 2 > x:
            ng = mid
        else:
            ok = mid
    return ok

ruijou_3 = set()
for j in range(3,60):
    if j & 1:
        for i in range(2, 10 ** 6 + 1):
            if i ** j > Max:
                break
            if hantei(i ** j):
                continue
            else:
                ruijou_3.add(i ** j)

ruijou_3 = list(ruijou_3)
ruijou_3.sort()
di = defaultdict(int)
index = []
for i in range(len(ruijou_3)):
    now = ruijou_3[i]
    tar = f(now) + i + 1
    index.append(tar)
    di[tar] = now
        

T = ip()

for _ in range(T):
    now = ip()
    if di[now] != 0:
        print(di[now])
    else:
        tar = bisect.bisect_left(index, now)
        ans = (now - tar) ** 2
        print(ans)
0