結果

問題 No.414 衝動
ユーザー ynyn
提出日時 2016-08-26 22:25:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 119 bytes
コンパイル時間 1,373 ms
コンパイル使用メモリ 86,800 KB
実行使用メモリ 75,956 KB
最終ジャッジ日時 2023-08-09 13:19:26
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,696 KB
testcase_01 AC 69 ms
71,296 KB
testcase_02 AC 69 ms
71,292 KB
testcase_03 AC 85 ms
75,692 KB
testcase_04 AC 69 ms
71,188 KB
testcase_05 AC 85 ms
75,364 KB
testcase_06 AC 87 ms
75,692 KB
testcase_07 AC 86 ms
75,552 KB
testcase_08 AC 85 ms
75,956 KB
testcase_09 AC 85 ms
75,548 KB
testcase_10 AC 68 ms
71,400 KB
testcase_11 AC 72 ms
75,528 KB
testcase_12 AC 69 ms
71,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())

for i in range(2, 10**6 + 1):
    if m % i == 0:
        print(i, m // i)
        exit()

print(1, m)
0