結果

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

テストケース

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

ソースコード

diff #

c = int(input())
count = 2
while True:
    if c%count == 0:
        break
    count += 1
print(str(count)+" "+str(c//count))
0