結果

問題 No.1514 Squared Matching
ユーザー Kiri8128Kiri8128
提出日時 2021-05-21 22:17:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 612 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 455,560 KB
最終ジャッジ日時 2024-04-18 15:46:42
合計ジャッジ時間 7,931 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def sqrt(n):
    if n == 0: return 0
    x = 1 << (n.bit_length() + 1) // 2
    y = (x + n // x) // 2
    while y < x:
        x = y
        y = (x + n // x) // 2
    return x

N = int(input())
nn = sqrt(N)
X = [-1] * (nn+1)

k = 2
while k <= nn:
    X[k] = 1
    for i in range(k*2, nn+1, k):
        X[i] = 0
    while k <= nn and X[k] >= 0:
        k += 1
P = [i for i in range(nn + 1) if X[i] == 1]

Y = [1] * (N + 1)
Y[0] = 0
for p in P:
    q = p ** 2
    for i in range(1, N // q + 1, q)[::-1]:
        Y[i] += Y[i*q]
        Y[i*q] = 0
# print("Y =", Y)

ans = 0
for a in Y:
    ans += a ** 2

print(ans)
0