結果

問題 No.722 100×100=1000
ユーザー mlihua09mlihua09
提出日時 2020-09-17 03:14:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 53,668 KB
最終ジャッジ日時 2024-06-22 03:56:47
合計ジャッジ時間 2,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,200 KB
testcase_01 AC 37 ms
52,868 KB
testcase_02 AC 32 ms
52,476 KB
testcase_03 AC 31 ms
52,852 KB
testcase_04 AC 33 ms
52,476 KB
testcase_05 AC 32 ms
51,936 KB
testcase_06 AC 31 ms
52,072 KB
testcase_07 AC 32 ms
52,892 KB
testcase_08 AC 33 ms
51,752 KB
testcase_09 AC 32 ms
52,336 KB
testcase_10 AC 32 ms
53,228 KB
testcase_11 AC 33 ms
52,568 KB
testcase_12 AC 33 ms
52,992 KB
testcase_13 AC 32 ms
52,860 KB
testcase_14 AC 33 ms
52,772 KB
testcase_15 AC 34 ms
53,120 KB
testcase_16 AC 32 ms
53,148 KB
testcase_17 AC 31 ms
52,292 KB
testcase_18 AC 32 ms
52,204 KB
testcase_19 AC 32 ms
53,008 KB
testcase_20 AC 30 ms
53,180 KB
testcase_21 AC 31 ms
52,220 KB
testcase_22 AC 31 ms
52,124 KB
testcase_23 AC 30 ms
52,688 KB
testcase_24 AC 32 ms
51,756 KB
testcase_25 AC 32 ms
53,152 KB
testcase_26 AC 32 ms
53,232 KB
testcase_27 WA -
testcase_28 AC 32 ms
52,952 KB
testcase_29 AC 31 ms
53,668 KB
testcase_30 AC 31 ms
53,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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

if A % 100 == 0 and B % 100 == 0 and str(abs(A)).index('0') == 1 and str(abs(B)).index('0') == 1:
    
    print(A * B // 10)
    
else:
    A *= B
    if abs(A) < 10 ** 8:
        print(A)
        
    else:
        print('E')
0