結果

問題 No.1514 Squared Matching
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-21 23:08:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 349 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 844,032 KB
最終ジャッジ日時 2024-04-18 16:42:49
合計ジャッジ時間 5,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,360 KB
testcase_01 MLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
base = [1]*(n+1)
use = [0]*(n+1)
ans = 1
for i in range(2,n+1):
    if use[i]:
        ans += base[i]*2-1
        continue
    for j in range(i,n+1,i):
        use[j] = 1
        c = 0
        now = j
        while now % i == 0:
            now //= i
            c += 1
        base[j] *= (c//2)+1
    ans += base[i]*2-1
print(ans)
0