結果

問題 No.809 かけ算
ユーザー shobonvipshobonvip
提出日時 2020-03-29 02:10:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 143 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 10,592 KB
実行使用メモリ 7,984 KB
最終ジャッジ日時 2023-08-30 18:31:23
合計ジャッジ時間 1,245 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,872 KB
testcase_01 RE -
testcase_02 AC 18 ms
7,872 KB
testcase_03 AC 17 ms
7,940 KB
testcase_04 AC 22 ms
7,860 KB
testcase_05 RE -
testcase_06 AC 17 ms
7,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
c = int(input())
for i in range(2,math.floor(math.sqrt(c))+1):
    if c%i==0:
        t=i
        break
print(str(t)+" "+str(c//t))
0