結果

問題 No.722 100×100=1000
ユーザー gorugo30
提出日時 2021-02-24 11:50:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 53,692 KB
最終ジャッジ日時 2024-09-24 12:23:24
合計ジャッジ時間 2,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other AC * 25 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = input().split()
if A.count("0") == len(A) - 1 - (1 if A[0] == "-" else 0) and B.count("0") == len(B) - 1 - (1 if B[0] == "-" else 0):
    print(int(A) * int(B))
else:
    ans = (int(A) * int(B))
    if abs(ans) >= 100000000:
        print("E")
    else:
        print(ans)
0