結果

問題 No.414 衝動
ユーザー mlihua09mlihua09
提出日時 2020-08-29 14:41:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 129 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 76,284 KB
最終ジャッジ日時 2023-08-09 13:46:27
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
76,112 KB
testcase_01 AC 75 ms
71,676 KB
testcase_02 AC 79 ms
71,676 KB
testcase_03 AC 74 ms
71,664 KB
testcase_04 AC 75 ms
71,380 KB
testcase_05 AC 90 ms
75,872 KB
testcase_06 AC 92 ms
76,284 KB
testcase_07 AC 74 ms
71,208 KB
testcase_08 AC 86 ms
76,088 KB
testcase_09 AC 75 ms
71,680 KB
testcase_10 AC 75 ms
71,604 KB
testcase_11 AC 77 ms
76,128 KB
testcase_12 AC 78 ms
76,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


M = int(input())

for i in range(int(M ** 0.5), 0, -1):
    
    if M % i == 0:
        
        print(i, M // i)
        break
0