結果

問題 No.300 平方数
ユーザー ああいいああいい
提出日時 2022-01-28 15:02:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 74,120 KB
最終ジャッジ日時 2024-06-09 07:46:20
合計ジャッジ時間 4,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
73,488 KB
testcase_01 AC 81 ms
73,300 KB
testcase_02 AC 69 ms
72,476 KB
testcase_03 AC 76 ms
71,968 KB
testcase_04 AC 81 ms
72,832 KB
testcase_05 AC 71 ms
72,092 KB
testcase_06 AC 69 ms
72,240 KB
testcase_07 AC 73 ms
72,716 KB
testcase_08 AC 69 ms
72,192 KB
testcase_09 AC 70 ms
72,684 KB
testcase_10 AC 69 ms
73,348 KB
testcase_11 AC 74 ms
73,272 KB
testcase_12 AC 69 ms
72,720 KB
testcase_13 AC 73 ms
72,628 KB
testcase_14 AC 73 ms
72,568 KB
testcase_15 AC 78 ms
71,956 KB
testcase_16 AC 76 ms
73,564 KB
testcase_17 AC 74 ms
73,300 KB
testcase_18 AC 73 ms
71,844 KB
testcase_19 AC 78 ms
73,828 KB
testcase_20 WA -
testcase_21 AC 80 ms
72,988 KB
testcase_22 AC 76 ms
73,768 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 76 ms
73,068 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 70 ms
73,160 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
ans = 1

C = 10 ** 6
dat = [0] * C
for i in range(2,C):
    if dat[i] == 0:
        for j in range(i*2,C,i):
            dat[j] = 1
        count = 0
        while X % i == 0:
            count += 1
            X //= i
        if count & 1:
            ans *= i
print(ans)
0