結果
| 問題 |
No.722 100×100=1000
|
| コンテスト | |
| ユーザー |
B9syDOfYhHFXecu
|
| 提出日時 | 2018-11-11 13:07:36 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 268 bytes |
| コンパイル時間 | 292 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-10-12 11:15:38 |
| 合計ジャッジ時間 | 2,170 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 27 |
ソースコード
A, B = [x for x in input()]
def cal(a, b):
x = int(a) * int(b)
if list(set(a[1:]))[0] == '0' and list(set(b[1:]))[0] == '0':
print(x // 10)
else:
if len(str(x)) > 8:
print('E')
else:
print(x)
B9syDOfYhHFXecu