結果

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

テストケース

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