結果

問題 No.1514 Squared Matching
ユーザー ayaoniayaoni
提出日時 2021-05-22 00:35:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,567 ms / 4,000 ms
コード長 718 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 467,084 KB
最終ジャッジ日時 2024-10-10 10:29:03
合計ジャッジ時間 44,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,052 KB
testcase_01 AC 2,566 ms
466,976 KB
testcase_02 AC 38 ms
53,396 KB
testcase_03 AC 36 ms
53,276 KB
testcase_04 AC 37 ms
53,744 KB
testcase_05 AC 55 ms
66,276 KB
testcase_06 AC 91 ms
82,428 KB
testcase_07 AC 512 ms
150,792 KB
testcase_08 AC 2,412 ms
452,712 KB
testcase_09 AC 2,098 ms
405,788 KB
testcase_10 AC 2,317 ms
433,036 KB
testcase_11 AC 2,418 ms
447,780 KB
testcase_12 AC 2,520 ms
458,104 KB
testcase_13 AC 2,489 ms
463,080 KB
testcase_14 AC 2,530 ms
465,140 KB
testcase_15 AC 2,537 ms
466,284 KB
testcase_16 AC 2,537 ms
466,668 KB
testcase_17 AC 2,567 ms
467,008 KB
testcase_18 AC 2,527 ms
466,684 KB
testcase_19 AC 2,533 ms
466,576 KB
testcase_20 AC 2,545 ms
467,084 KB
testcase_21 AC 2,531 ms
466,684 KB
testcase_22 AC 536 ms
154,608 KB
testcase_23 AC 1,015 ms
232,616 KB
testcase_24 AC 1,516 ms
311,008 KB
testcase_25 AC 2,024 ms
388,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()

flag = [0]*(N+1)
ans = 0
for i in range(1,N+1):
    if flag[i]:
        continue

    count = 0
    for j in range(1,10000):
        if i*j**2 > N:
            break
        count += 1
        flag[i*j**2] = 1

    ans += count*int((N//i)**0.5)

print(ans)
0