結果

問題 No.300 平方数
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-17 18:04:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 63,416 KB
最終ジャッジ日時 2024-06-25 08:16:59
合計ジャッジ時間 3,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,124 KB
testcase_01 AC 47 ms
57,080 KB
testcase_02 AC 47 ms
60,952 KB
testcase_03 AC 45 ms
55,624 KB
testcase_04 AC 46 ms
55,364 KB
testcase_05 AC 45 ms
56,076 KB
testcase_06 AC 45 ms
55,432 KB
testcase_07 AC 46 ms
57,124 KB
testcase_08 AC 46 ms
56,684 KB
testcase_09 AC 46 ms
56,868 KB
testcase_10 AC 45 ms
56,788 KB
testcase_11 AC 45 ms
56,108 KB
testcase_12 AC 46 ms
56,076 KB
testcase_13 AC 61 ms
62,048 KB
testcase_14 AC 46 ms
55,552 KB
testcase_15 AC 48 ms
57,352 KB
testcase_16 AC 45 ms
55,852 KB
testcase_17 AC 46 ms
56,368 KB
testcase_18 AC 46 ms
55,616 KB
testcase_19 AC 45 ms
56,372 KB
testcase_20 WA -
testcase_21 AC 49 ms
61,624 KB
testcase_22 AC 49 ms
62,096 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 49 ms
61,944 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 50 ms
62,260 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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
C = Counter(Y)
Y.append(now)
for k,v in C.items():
    
    if v%2==0:
        continue
    ans *= k
print(ans)
0