結果

問題 No.414 衝動
ユーザー yansi819yansi819
提出日時 2024-05-19 12:11:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 347 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 71,272 KB
最終ジャッジ日時 2024-05-19 12:11:55
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factors(N):
    d = []
    for i in range(2, N + 1):
        while N % i == 0:
            d.append(i)
            N //= i
    if N != 1:
        d.append(N)
    return d

M = int(input())
pf = prime_factors(M)
if len(pf) == 1:
    print(1, M)
else:
    ans = 1
    for i in range(1, len(pf)):
        ans *= pf[i]
    print(pf[0], ans)
0