結果
問題 | No.414 衝動 |
ユーザー | mesame3993 |
提出日時 | 2021-11-16 15:10:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 59,504 KB |
最終ジャッジ日時 | 2024-12-17 14:16:26 |
合計ジャッジ時間 | 1,935 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
59,036 KB |
testcase_01 | AC | 36 ms
52,904 KB |
testcase_02 | AC | 36 ms
54,204 KB |
testcase_03 | WA | - |
testcase_04 | AC | 51 ms
58,032 KB |
testcase_05 | AC | 54 ms
58,112 KB |
testcase_06 | AC | 51 ms
57,784 KB |
testcase_07 | AC | 38 ms
52,624 KB |
testcase_08 | AC | 47 ms
57,328 KB |
testcase_09 | WA | - |
testcase_10 | AC | 38 ms
54,108 KB |
testcase_11 | AC | 40 ms
58,588 KB |
testcase_12 | AC | 41 ms
59,504 KB |
ソースコード
def main(): from sys import stdin input=stdin.readline m = int(input()) def factorization(n): # soinsuubunkai, cnt, kosuu arr, tmp = [], n for i in range(2, int(-(-n**0.5//1))+1): if tmp % i == 0: cnt = 0 while tmp % i == 0: cnt += 1 tmp //= i arr.append([i, cnt]) if tmp != 1: arr.append([tmp, 1]) if len(arr) == 0: arr.append([n, 1]) return arr f = factorization(m) if len(f) == 1: print(*f[0]) else: print(f[0][0], m//f[0][0]) main()