結果

問題 No.809 かけ算
ユーザー _keroru_keroru
提出日時 2019-04-12 21:27:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 90 bytes
コンパイル時間 1,733 ms
コンパイル使用メモリ 86,916 KB
実行使用メモリ 146,496 KB
最終ジャッジ日時 2023-10-12 18:43:41
合計ジャッジ時間 5,119 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

c=int(input())
a=1
flg=0
while flg==0:
    a+=1
    if c%a==0:
        flg=1
print(a,c//a)
0