結果

問題 No.1514 Squared Matching
ユーザー aaaaaaaaaa2230
提出日時 2021-05-21 23:08:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 349 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 845,988 KB
最終ジャッジ日時 2024-10-10 10:00:09
合計ジャッジ時間 5,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 MLE * 1 -- * 24
権限があれば一括ダウンロードができます

ソースコード

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