結果

問題 No.414 衝動
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-09 02:53:03
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 342 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 65,048 KB
最終ジャッジ日時 2024-10-03 03:37:44
合計ジャッジ時間 1,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,652 KB
testcase_01 AC 35 ms
53,240 KB
testcase_02 AC 35 ms
52,616 KB
testcase_03 AC 51 ms
58,108 KB
testcase_04 AC 50 ms
57,992 KB
testcase_05 AC 49 ms
58,072 KB
testcase_06 AC 50 ms
58,556 KB
testcase_07 RE -
testcase_08 AC 49 ms
57,940 KB
testcase_09 AC 54 ms
57,800 KB
testcase_10 AC 37 ms
53,176 KB
testcase_11 AC 41 ms
57,908 KB
testcase_12 AC 41 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())

def make_divisors(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)

    divisors.sort()
    return divisors

d = make_divisors(m)
if len(d) == 2:
    print(1, m)
else:
    print(d[1], m//d[1])
0