結果

問題 No.414 衝動
ユーザー O2MTO2MT
提出日時 2020-12-19 02:11:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 114 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 58,244 KB
最終ジャッジ日時 2024-11-15 09:28:55
合計ジャッジ時間 1,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,972 KB
testcase_01 AC 38 ms
52,472 KB
testcase_02 AC 38 ms
53,004 KB
testcase_03 AC 55 ms
57,844 KB
testcase_04 AC 38 ms
52,472 KB
testcase_05 AC 55 ms
58,224 KB
testcase_06 AC 56 ms
57,952 KB
testcase_07 AC 38 ms
52,064 KB
testcase_08 AC 49 ms
58,244 KB
testcase_09 AC 55 ms
57,712 KB
testcase_10 AC 38 ms
53,096 KB
testcase_11 AC 41 ms
57,988 KB
testcase_12 AC 38 ms
52,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = int(input())
for i in range(2,int(M**0.5)+1):
    if M%i == 0:
        print(i,M//i)
        exit()
print(1,M)
0