結果

問題 No.722 100×100=1000
ユーザー titiatitia
提出日時 2025-01-03 01:48:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2025-01-03 01:48:17
合計ジャッジ時間 11,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

A,B=map(int,input().split())

flag=0

for x in [A,B]:
    while x%10==0:
        x//=10

    if abs(x)<=9:
        flag+=1

if flag==2:
    print(A*B//10)
else:
    ANS=A*B

    if -99999999<=ANS<=99999999:
        print(ANS)
    else:
        print("E")
0