結果
問題 | No.8032 Unavailability of Inequality Signs |
ユーザー |
|
提出日時 | 2022-05-12 21:06:42 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
import numpy as npN = 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))