結果

問題 No.1022 Power Equation
ユーザー chocoruskchocorusk
提出日時 2020-04-07 17:46:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-07 19:16:16
合計ジャッジ時間 3,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
10,880 KB
testcase_01 AC 303 ms
10,752 KB
testcase_02 AC 302 ms
10,752 KB
testcase_03 AC 294 ms
10,752 KB
testcase_04 AC 307 ms
10,752 KB
testcase_05 AC 303 ms
10,880 KB
testcase_06 AC 304 ms
10,752 KB
testcase_07 AC 309 ms
10,752 KB
testcase_08 AC 304 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
t=int(input())
for _ in range(t):
    n=int(input())
    ans=n*(2*n-1)
    for i in range(1, 31):
        for j in range(1, 31):
            k=max(i, j)
            if k==1 or math.gcd(i, j)>1:
                continue
            l=1
            r=32000
            while r-l>1:
                m=(l+r)//2
                if m**k<=n:
                    l=m
                else:
                    r=m
            ans+=n//k*(l-1)
    print(ans)
0