結果
問題 |
No.722 100×100=1000
|
ユーザー |
![]() |
提出日時 | 2018-11-11 13:07:55 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 279 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-12 11:15:42 |
合計ジャッジ時間 | 1,956 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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) cal(A, B)