結果
| 問題 | No.722 100×100=1000 |
| コンテスト | |
| ユーザー |
syosinnsya8
|
| 提出日時 | 2020-04-02 17:17:58 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 217 bytes |
| 記録 | |
| コンパイル時間 | 441 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-17 12:21:46 |
| 合計ジャッジ時間 | 4,129 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 20 WA * 7 |
ソースコード
A,B=map(int,input().split())
ans=A*B
n=len(str(A))-1
m=len(str(B))-1
if A % (10**n) == 0 and B%(10**m) == 0:
ans/=10
print(int(ans))
elif -99999999>ans or 99999999<ans:
print('E')
else:
print(ans)
syosinnsya8