結果

問題 No.809 かけ算
ユーザー melankmelank
提出日時 2019-04-17 14:11:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 11,696 KB
実行使用メモリ 14,400 KB
最終ジャッジ日時 2023-10-22 07:22:10
合計ジャッジ時間 4,567 ms
ジャッジサーバーID
(参考情報)
judge13 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

c = int(input())
a = 0
b = 0
if c %2 == 0:
    a = 2
    b = c / 2
else:
    for i in range(3, c, 2):
        if c %i == 0:
            a = i
            b = c / i
            break
    
print(a, b)
    
0