結果
| 問題 | No.722 100×100=1000 |
| コンテスト | |
| ユーザー |
syosinnsya8
|
| 提出日時 | 2020-04-02 17:09:44 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 195 bytes |
| 記録 | |
| コンパイル時間 | 434 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-17 12:21:30 |
| 合計ジャッジ時間 | 4,290 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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=int(A*B/10)
else:
if -99999999>ans or 99999999<ans:
ans='E'
print(ans)
syosinnsya8