結果
| 問題 | No.722 100×100=1000 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-08-03 22:52:47 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 374 bytes |
| 記録 | |
| コンパイル時間 | 462 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 20,696 KB |
| 最終ジャッジ日時 | 2026-04-29 00:29:14 |
| 合計ジャッジ時間 | 5,797 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 RE * 1 |
| other | AC * 20 WA * 1 RE * 6 |
ソースコード
from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write
def main():
A, B = map(int, input().split())
if not A % 100 and not B % 100:
if str(A)[1] == str(B)[1] == '0':
ans = (A * B) // 10
else:
ans = A * B
if not -99999999 <= ans <= 99999999:
ans = 'E'
print(ans)
main()