結果

問題 No.722 100×100=1000
ユーザー 双六双六
提出日時 2020-08-30 02:48:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 671 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 115,920 KB
最終ジャッジ日時 2024-11-14 17:50:29
合計ジャッジ時間 11,604 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,536 KB
testcase_01 AC 44 ms
115,920 KB
testcase_02 AC 41 ms
61,948 KB
testcase_03 AC 41 ms
115,104 KB
testcase_04 AC 41 ms
61,000 KB
testcase_05 AC 41 ms
54,620 KB
testcase_06 AC 42 ms
54,316 KB
testcase_07 AC 42 ms
53,980 KB
testcase_08 AC 42 ms
54,556 KB
testcase_09 AC 41 ms
55,100 KB
testcase_10 AC 41 ms
53,988 KB
testcase_11 AC 41 ms
53,700 KB
testcase_12 AC 41 ms
54,792 KB
testcase_13 TLE -
testcase_14 AC 42 ms
54,364 KB
testcase_15 AC 44 ms
54,652 KB
testcase_16 AC 41 ms
53,992 KB
testcase_17 AC 42 ms
53,864 KB
testcase_18 AC 42 ms
54,852 KB
testcase_19 AC 42 ms
55,648 KB
testcase_20 AC 43 ms
54,172 KB
testcase_21 AC 42 ms
54,676 KB
testcase_22 AC 41 ms
54,060 KB
testcase_23 AC 42 ms
55,104 KB
testcase_24 AC 42 ms
54,116 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 42 ms
54,552 KB
testcase_28 AC 42 ms
54,648 KB
testcase_29 AC 43 ms
54,504 KB
testcase_30 AC 42 ms
114,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	A, B = getlist()
	AA, BB = A, B
	n = 0
	m = 0
	while True:
		if A % 10 == 0:
			n += 1
			A = int(A // 10)
		else:
			break

	while True:
		if B % 10 == 0:
			m += 1
			B = int(B // 10)
		else:
			break

	if abs(A) < 10 and abs(B) < 10 and n >= 2 and m >= 2:

		ans = int(A * B * (10 ** ((n + m) - 1)))
		print(ans)
		return

	ans = AA * BB
	if abs(ans) < 10 ** 8:
		print(ans)
	else:
		print("E")






if __name__ == '__main__':
	main()
0