結果

問題 No.809 かけ算
ユーザー _keroru_keroru
提出日時 2019-04-12 21:27:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 90 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-09-14 17:10:24
合計ジャッジ時間 3,852 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 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