結果

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

ソースコード

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):
    ans = int(A) * int(B)
    ans = str(ans)
    print(ans[:len(ans) - 1])
else:
    ans = (int(A) * int(B))
    if abs(ans) >= 100000000:
        print("E")
    else:
        print(ans)
0