結果

問題 No.300 平方数
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2015-11-13 22:41:38
言語 Python2
(2.7.18)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 362 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 38,204 KB
最終ジャッジ日時 2024-09-13 14:42:29
合計ジャッジ時間 3,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 62 ms
21,524 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 12 ms
6,940 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 12 ms
6,940 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 115 ms
38,136 KB
testcase_14 AC 11 ms
6,944 KB
testcase_15 AC 38 ms
14,464 KB
testcase_16 AC 45 ms
16,512 KB
testcase_17 AC 13 ms
7,040 KB
testcase_18 AC 14 ms
7,296 KB
testcase_19 AC 49 ms
18,236 KB
testcase_20 AC 33 ms
13,184 KB
testcase_21 AC 114 ms
38,204 KB
testcase_22 AC 102 ms
34,488 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 41 ms
15,232 KB
testcase_25 AC 96 ms
32,152 KB
testcase_26 AC 39 ms
14,720 KB
testcase_27 AC 64 ms
22,472 KB
testcase_28 AC 94 ms
31,652 KB
testcase_29 AC 79 ms
26,844 KB
testcase_30 AC 80 ms
27,272 KB
testcase_31 AC 85 ms
28,068 KB
testcase_32 AC 74 ms
24,924 KB
testcase_33 AC 47 ms
16,896 KB
testcase_34 AC 104 ms
34,608 KB
testcase_35 AC 73 ms
24,900 KB
testcase_36 AC 61 ms
21,800 KB
testcase_37 AC 53 ms
19,016 KB
testcase_38 AC 61 ms
21,424 KB
testcase_39 AC 67 ms
23,192 KB
testcase_40 AC 60 ms
21,028 KB
testcase_41 AC 43 ms
16,000 KB
testcase_42 AC 73 ms
24,864 KB
testcase_43 AC 28 ms
11,392 KB
testcase_44 AC 64 ms
22,032 KB
testcase_45 AC 49 ms
17,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def p_decom(n):
  ret = []
  while n % 2 == 0:
    ret.append(2)
    n /= 2
  for i in range(2, int(math.sqrt(n))+1):
    while n % i == 0:
      ret.append(i)
      n /= i
  if n > 1:
    ret.append(n)
  return ret

a = p_decom(input())
se = set(a)
b = list(se)
ans = 1
for i in range(len(b)):
    ans *= b[i] if a.count(b[i])%2==1 else 1
print ans
0