結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | pete1288998 |
提出日時 | 2020-06-20 23:51:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 473 bytes |
コンパイル時間 | 123 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-03 17:38:58 |
合計ジャッジ時間 | 1,165 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,624 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,880 KB |
testcase_03 | AC | 26 ms
10,880 KB |
testcase_04 | AC | 26 ms
10,752 KB |
testcase_05 | AC | 25 ms
10,880 KB |
testcase_06 | AC | 25 ms
10,624 KB |
testcase_07 | AC | 28 ms
10,880 KB |
testcase_08 | AC | 25 ms
10,752 KB |
testcase_09 | AC | 26 ms
10,624 KB |
testcase_10 | AC | 25 ms
10,752 KB |
testcase_11 | AC | 26 ms
10,752 KB |
testcase_12 | AC | 27 ms
10,880 KB |
testcase_13 | AC | 26 ms
10,752 KB |
testcase_14 | AC | 25 ms
10,624 KB |
testcase_15 | AC | 25 ms
10,880 KB |
testcase_16 | AC | 26 ms
10,752 KB |
ソースコード
from collections import Counter def prime_decomposition(n): i = 2 table = [1] while i*i <= n: while n%i == 0: n /= i table.append(i) i += 1 if n > 1: table.append(n) return table n = int(input()) l = Counter(prime_decomposition(n)) a = 1 b = 1 for k,v in l.items(): if v > 1: a *= (k**(v//2)) b *= (k**(v%2)) else: b *= k print(int(a),int(b))