結果

問題 No.722 100×100=1000
ユーザー lloyzlloyz
提出日時 2022-06-03 21:05:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 11,836 KB
実行使用メモリ 10,044 KB
最終ジャッジ日時 2023-10-21 01:36:24
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge12 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,044 KB
testcase_01 AC 29 ms
10,044 KB
testcase_02 AC 29 ms
10,044 KB
testcase_03 AC 28 ms
10,044 KB
testcase_04 AC 28 ms
10,044 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 27 ms
10,044 KB
testcase_08 AC 28 ms
10,044 KB
testcase_09 AC 27 ms
10,044 KB
testcase_10 AC 28 ms
10,044 KB
testcase_11 AC 28 ms
10,044 KB
testcase_12 AC 29 ms
10,044 KB
testcase_13 AC 28 ms
10,044 KB
testcase_14 AC 29 ms
10,044 KB
testcase_15 AC 29 ms
10,044 KB
testcase_16 AC 28 ms
10,044 KB
testcase_17 AC 29 ms
10,044 KB
testcase_18 AC 29 ms
10,044 KB
testcase_19 AC 29 ms
10,044 KB
testcase_20 AC 28 ms
10,044 KB
testcase_21 WA -
testcase_22 AC 28 ms
10,044 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 27 ms
10,044 KB
testcase_26 AC 28 ms
10,044 KB
testcase_27 AC 28 ms
10,044 KB
testcase_28 AC 28 ms
10,044 KB
testcase_29 AC 29 ms
10,044 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())

aa = a
bb = b
flag = True
while True:
    if aa % 10 != 0:
        if not (-9 <= aa <= 9):
            flag = False
            break
    if bb % 10 != 0:
        if not (-9 <= bb <= 9):
            flag = False
            break
    if not (-9 <= aa <= 9):
        aa //= 10
    if not (-9 <= bb <= 9):
        bb //= 10
    if -9 <= aa <= 9 and -9 <= bb <= 9:
        break

if flag:
    print(a * b // 10)
else:
    ans = a * b
    if not (-99999999 <= ans <= 99999999):
        ans = 'E'
    print(ans)
0