結果

問題 No.414 衝動
ユーザー yansi819yansi819
提出日時 2024-05-19 12:16:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 59,452 KB
最終ジャッジ日時 2024-05-19 12:16:12
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
58,060 KB
testcase_01 AC 33 ms
53,128 KB
testcase_02 AC 34 ms
52,784 KB
testcase_03 AC 46 ms
58,616 KB
testcase_04 AC 49 ms
58,044 KB
testcase_05 AC 47 ms
58,948 KB
testcase_06 AC 48 ms
58,108 KB
testcase_07 AC 38 ms
52,752 KB
testcase_08 AC 41 ms
59,452 KB
testcase_09 AC 48 ms
58,652 KB
testcase_10 AC 33 ms
52,788 KB
testcase_11 AC 36 ms
58,616 KB
testcase_12 AC 38 ms
57,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

M = int(input())
if M == 1:
    print(1, 1)
    exit()
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