結果

問題 No.1514 Squared Matching
ユーザー convexineqconvexineq
提出日時 2021-05-21 22:10:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,434 ms / 4,000 ms
コード長 463 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 468,224 KB
最終ジャッジ日時 2024-10-10 08:55:28
合計ジャッジ時間 50,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 2,722 ms
468,060 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 42 ms
54,144 KB
testcase_05 AC 52 ms
63,944 KB
testcase_06 AC 104 ms
82,304 KB
testcase_07 AC 559 ms
151,552 KB
testcase_08 AC 2,623 ms
454,016 KB
testcase_09 AC 2,429 ms
406,656 KB
testcase_10 AC 2,876 ms
434,220 KB
testcase_11 AC 2,886 ms
449,152 KB
testcase_12 AC 3,434 ms
459,252 KB
testcase_13 AC 2,935 ms
463,872 KB
testcase_14 AC 2,688 ms
466,304 KB
testcase_15 AC 3,249 ms
467,072 KB
testcase_16 AC 3,100 ms
467,840 KB
testcase_17 AC 2,736 ms
467,968 KB
testcase_18 AC 2,759 ms
468,224 KB
testcase_19 AC 2,754 ms
467,840 KB
testcase_20 AC 2,758 ms
467,968 KB
testcase_21 AC 2,719 ms
467,840 KB
testcase_22 AC 579 ms
155,008 KB
testcase_23 AC 1,096 ms
233,088 KB
testcase_24 AC 1,646 ms
311,424 KB
testcase_25 AC 2,336 ms
389,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isqrt(n):
    assert n >= 0
    if n < 2: return n
    x = int(n**0.5)*2
    while x*x > n:
        x = (x+n//x)//2
    return x

n = int(input())
r = [1]*(n+1)
from collections import defaultdict
d = defaultdict(int)
for i in range(1,n+1):
    if r[i] == 0: continue
    c = 0
    for j in range(1,n+1):
        v = i*j*j
        if v > n: break
        c += 1
        r[v] = 0
    d[n//i] += c

ans = 0
for k,v in d.items():
    ans += isqrt(k)*v
print(ans)
0