結果

問題 No.300 平方数
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-17 18:06:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 1,000 ms
コード長 406 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 61,656 KB
最終ジャッジ日時 2024-06-25 08:17:33
合計ジャッジ時間 4,026 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,772 KB
testcase_01 AC 51 ms
55,428 KB
testcase_02 AC 52 ms
61,400 KB
testcase_03 AC 46 ms
55,120 KB
testcase_04 AC 46 ms
55,492 KB
testcase_05 AC 47 ms
55,168 KB
testcase_06 AC 47 ms
55,204 KB
testcase_07 AC 48 ms
55,580 KB
testcase_08 AC 51 ms
55,760 KB
testcase_09 AC 48 ms
55,044 KB
testcase_10 AC 47 ms
55,404 KB
testcase_11 AC 47 ms
55,728 KB
testcase_12 AC 48 ms
55,488 KB
testcase_13 AC 63 ms
60,596 KB
testcase_14 AC 47 ms
55,516 KB
testcase_15 AC 48 ms
55,600 KB
testcase_16 AC 46 ms
55,528 KB
testcase_17 AC 46 ms
55,084 KB
testcase_18 AC 46 ms
55,036 KB
testcase_19 AC 47 ms
55,728 KB
testcase_20 AC 68 ms
61,184 KB
testcase_21 AC 50 ms
61,512 KB
testcase_22 AC 50 ms
60,864 KB
testcase_23 AC 68 ms
61,512 KB
testcase_24 AC 67 ms
61,348 KB
testcase_25 AC 63 ms
60,808 KB
testcase_26 AC 66 ms
61,128 KB
testcase_27 AC 67 ms
60,884 KB
testcase_28 AC 64 ms
61,024 KB
testcase_29 AC 65 ms
61,412 KB
testcase_30 AC 67 ms
60,732 KB
testcase_31 AC 68 ms
61,400 KB
testcase_32 AC 69 ms
60,928 KB
testcase_33 AC 65 ms
61,060 KB
testcase_34 AC 63 ms
60,856 KB
testcase_35 AC 63 ms
60,904 KB
testcase_36 AC 66 ms
60,992 KB
testcase_37 AC 66 ms
60,904 KB
testcase_38 AC 54 ms
60,664 KB
testcase_39 AC 67 ms
61,416 KB
testcase_40 AC 66 ms
61,656 KB
testcase_41 AC 66 ms
60,788 KB
testcase_42 AC 51 ms
61,232 KB
testcase_43 AC 66 ms
60,944 KB
testcase_44 AC 67 ms
60,924 KB
testcase_45 AC 66 ms
61,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


X = int(input())
Y = []
ans = 1
now = 2
while X!=1:
    if now>10**6:
        break
    while X%now==0:
        Y.append(now)
        X //= now
    now += 1

Y.append(X)
C = Counter(Y)
for k,v in C.items():
    
    if v%2==0:
        continue
    ans *= k
print(ans)
0