結果

問題 No.722 100×100=1000
ユーザー matrie
提出日時 2020-12-18 21:54:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 169 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-21 09:26:19
合計ジャッジ時間 1,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 24 RE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
a,b=map(int,s.split())
i,j=map(int,s.replace('0','').split())
print(a*b//10 if a%100==b%100==0 and -10<i<10 and -10<j<10 else a*b if -10**8<a*b<10**8 else 'E')
0