結果

問題 No.1022 Power Equation
ユーザー convexineqconvexineq
提出日時 2021-05-06 23:14:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-09-14 14:21:21
合計ジャッジ時間 1,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,880 KB
testcase_01 AC 55 ms
63,360 KB
testcase_02 AC 54 ms
63,360 KB
testcase_03 AC 54 ms
63,616 KB
testcase_04 AC 64 ms
63,744 KB
testcase_05 AC 68 ms
63,872 KB
testcase_06 AC 68 ms
63,616 KB
testcase_07 AC 68 ms
63,872 KB
testcase_08 AC 63 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def root(n,k):
    for i in range(n+9):
        if i**k > n: return i-2

t,*a = map(int,open(0).read().split())
for n in a:
    R = [0,0]+[root(n,k) for k in range(2,30)]
    ans = 2*n*n-n
    for i in range(1,30):
        for j in range(i+1,30):
            if gcd(i,j) > 1: continue
            ans += n//j*R[j]*2
    print(ans)
0