結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー hiro1729hiro1729
提出日時 2023-09-10 21:32:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 121 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 10,684 KB
実行使用メモリ 29,588 KB
最終ジャッジ日時 2023-09-10 21:33:02
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
29,372 KB
testcase_01 AC 127 ms
29,552 KB
testcase_02 AC 128 ms
29,368 KB
testcase_03 AC 132 ms
29,440 KB
testcase_04 AC 129 ms
29,460 KB
testcase_05 AC 139 ms
29,344 KB
testcase_06 AC 129 ms
29,368 KB
testcase_07 AC 129 ms
29,352 KB
testcase_08 AC 128 ms
29,260 KB
testcase_09 AC 129 ms
29,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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