結果

問題 No.1514 Squared Matching
ユーザー convexineqconvexineq
提出日時 2021-05-21 21:41:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,811 ms / 4,000 ms
コード長 369 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 467,328 KB
最終ジャッジ日時 2024-10-10 08:14:57
合計ジャッジ時間 63,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,952 KB
testcase_01 AC 3,811 ms
466,792 KB
testcase_02 AC 36 ms
52,192 KB
testcase_03 AC 35 ms
54,216 KB
testcase_04 AC 35 ms
52,900 KB
testcase_05 AC 53 ms
66,676 KB
testcase_06 AC 113 ms
82,112 KB
testcase_07 AC 756 ms
151,032 KB
testcase_08 AC 3,512 ms
452,928 KB
testcase_09 AC 3,161 ms
405,684 KB
testcase_10 AC 3,356 ms
432,936 KB
testcase_11 AC 3,443 ms
448,004 KB
testcase_12 AC 3,618 ms
458,404 KB
testcase_13 AC 3,665 ms
463,012 KB
testcase_14 AC 3,642 ms
465,024 KB
testcase_15 AC 3,685 ms
466,356 KB
testcase_16 AC 3,667 ms
466,436 KB
testcase_17 AC 3,660 ms
466,664 KB
testcase_18 AC 3,652 ms
467,328 KB
testcase_19 AC 3,652 ms
466,868 KB
testcase_20 AC 3,630 ms
466,876 KB
testcase_21 AC 3,663 ms
467,172 KB
testcase_22 AC 776 ms
154,508 KB
testcase_23 AC 1,496 ms
232,664 KB
testcase_24 AC 2,198 ms
310,700 KB
testcase_25 AC 2,925 ms
388,988 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())
ans = 0
r = [1]*(n+1)
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
    ans += isqrt(n//i)*c
print(ans)
0