結果
問題 |
No.722 100×100=1000
|
ユーザー |
![]() |
提出日時 | 2018-11-11 13:09:42 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 289 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-12 11:15:45 |
合計ジャッジ時間 | 2,027 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 12 WA * 10 RE * 5 |
ソースコード
A, B = [x for x in input().split(' ')] 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) cal(A, B)