結果

問題 No.414 衝動
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-09 02:53:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 381 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 57,344 KB
最終ジャッジ日時 2024-11-15 09:27:21
合計ジャッジ時間 1,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,344 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 55 ms
57,216 KB
testcase_04 AC 56 ms
57,088 KB
testcase_05 AC 55 ms
57,232 KB
testcase_06 AC 56 ms
57,088 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 50 ms
57,216 KB
testcase_09 AC 56 ms
57,344 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 43 ms
57,344 KB
testcase_12 AC 43 ms
56,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())

if m == 1:
    print(1, 1)
    exit()

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