結果
| 問題 |
No.722 100×100=1000
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-24 11:52:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 2,000 ms |
| コード長 | 370 bytes |
| コンパイル時間 | 693 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2024-12-29 20:00:45 |
| 合計ジャッジ時間 | 2,735 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 27 |
ソースコード
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) and A.endswith("00") and B.endswith("00"):
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)