結果

問題 No.809 かけ算
ユーザー shobonvip
提出日時 2020-03-29 02:06:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 124 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2025-01-02 12:49:21
合計ジャッジ時間 7,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4 TLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

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