結果

問題 No.1047 Zero (Novice)
ユーザー StarMatyanStarMatyan
提出日時 2020-11-28 00:22:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 319 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-26 21:21:57
合計ジャッジ時間 1,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

inputer = input()
inputer_s = inputer.split(" ")

a_num = int(inputer_s[0])
b_num = int(inputer_s[1])
result = 0

if b_num==0:
	result = 1
elif a_num == 0:
	result = -1
else:
	if b_num > 0:
		if a_num < 0:
			result=2
		else:
			result=-1
	elif b_num < 0:
		if a_num > 0:
			result=2
		else:
			result=-1

print(result)
0