結果

問題 No.1514 Squared Matching
ユーザー mkawa2mkawa2
提出日時 2024-04-24 00:17:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,976 ms / 4,000 ms
コード長 1,227 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 450,608 KB
最終ジャッジ日時 2024-11-06 06:49:32
合計ジャッジ時間 32,869 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,076 KB
testcase_01 AC 1,976 ms
450,508 KB
testcase_02 AC 45 ms
60,796 KB
testcase_03 AC 44 ms
59,884 KB
testcase_04 AC 44 ms
60,380 KB
testcase_05 AC 47 ms
62,216 KB
testcase_06 AC 71 ms
68,688 KB
testcase_07 AC 379 ms
137,972 KB
testcase_08 AC 1,789 ms
436,600 KB
testcase_09 AC 1,536 ms
389,192 KB
testcase_10 AC 1,673 ms
415,724 KB
testcase_11 AC 1,744 ms
431,784 KB
testcase_12 AC 1,800 ms
441,040 KB
testcase_13 AC 1,832 ms
447,500 KB
testcase_14 AC 1,832 ms
448,800 KB
testcase_15 AC 1,840 ms
449,288 KB
testcase_16 AC 1,839 ms
450,056 KB
testcase_17 AC 1,907 ms
450,420 KB
testcase_18 AC 1,845 ms
450,124 KB
testcase_19 AC 1,840 ms
449,684 KB
testcase_20 AC 1,849 ms
450,608 KB
testcase_21 AC 1,861 ms
450,324 KB
testcase_22 AC 396 ms
142,000 KB
testcase_23 AC 767 ms
219,380 KB
testcase_24 AC 1,148 ms
295,440 KB
testcase_25 AC 1,477 ms
372,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
# inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from math import isqrt,floor,sqrt

def solve(n):
    lim=7100
    isprime=[1]*lim
    dp=list(range(n+1))
    for p in range(2,lim):
        if isprime[p]:
            for a in range(p*p,lim,p):isprime[a]=0
            d=p2=p*p
            while d<=n:
                for a in range(d,n+1,d):dp[a]//=p2
                d*=p2
    ans=0
    for a in range(1,n+1):
        ans+=floor(sqrt(n/dp[a]))
        # ans+=isqrt(n//dp[a])

    print(ans)

solve(II())
0