結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー compass19compass19
提出日時 2018-04-10 19:29:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 178 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 816,724 KB
最終ジャッジ日時 2023-09-09 03:48:03
合計ジャッジ時間 3,683 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,848 KB
testcase_01 AC 16 ms
7,812 KB
testcase_02 AC 16 ms
7,988 KB
testcase_03 AC 15 ms
7,768 KB
testcase_04 AC 16 ms
7,864 KB
testcase_05 MLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
for _ in range(N):
	a, b = map(int, input().split())
	if a == b:
		r = chr(61)
	else:
		if a in set(range(1, b)):
			r = chr(60)
		else:
			r = chr(62)
	print(r)
0