結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー hiro1729hiro1729
提出日時 2023-09-10 21:33:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,436 KB
最終ジャッジ日時 2024-06-28 12:36:37
合計ジャッジ時間 6,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,172 KB
testcase_01 AC 516 ms
44,020 KB
testcase_02 AC 520 ms
44,436 KB
testcase_03 AC 518 ms
44,176 KB
testcase_04 AC 515 ms
44,052 KB
testcase_05 AC 521 ms
44,180 KB
testcase_06 AC 513 ms
44,312 KB
testcase_07 AC 511 ms
44,416 KB
testcase_08 AC 513 ms
43,920 KB
testcase_09 AC 516 ms
43,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import sign
n = int(input())
for _ in range(n):
	a, b = map(int, input().split())
	print(chr(61 + sign(a - b)))
0