結果

問題 No.809 かけ算
ユーザー _keroru_keroru
提出日時 2019-04-12 21:25:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 81 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 87,216 KB
実行使用メモリ 79,568 KB
最終ジャッジ日時 2023-10-12 18:37:54
合計ジャッジ時間 4,100 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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