結果

問題 No.722 100×100=1000
ユーザー Palearctic
提出日時 2018-08-29 18:02:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-12 11:06:17
合計ジャッジ時間 1,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 20 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

l=list(map(int,input().split()))

result=l[0]*l[1]

if((l[0]/10).is_integer()==True & (l[1]/10).is_integer()==True):
    print(int(result/10))
else:
    if(abs(result)<=99999999):
        print(result)
    else:
        print("E")
0