結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー zutsuzutsu
提出日時 2022-05-12 21:06:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,560 KB
最終ジャッジ日時 2024-07-20 15:26:03
合計ジャッジ時間 6,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
43,796 KB
testcase_01 AC 507 ms
43,932 KB
testcase_02 AC 510 ms
44,436 KB
testcase_03 AC 516 ms
44,188 KB
testcase_04 AC 529 ms
44,304 KB
testcase_05 AC 520 ms
43,920 KB
testcase_06 AC 516 ms
44,188 KB
testcase_07 AC 507 ms
44,304 KB
testcase_08 AC 515 ms
43,920 KB
testcase_09 AC 525 ms
44,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
for _ in range(N):
    a,b = map(int, input().split())
    s = np.sign(a-b)
    if s == 1:
        print(chr(62))
    elif s == 0:
        print('=')
    else:
        print(chr(60))
0