結果
| 問題 | No.8032 Unavailability of Inequality Signs |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-12 21:06:42 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 497 ms / 2,000 ms |
| + 29µs | |
| コード長 | 219 bytes |
| 記録 | |
| コンパイル時間 | 564 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 35,324 KB |
| 最終ジャッジ日時 | 2026-08-20 04:28:03 |
| 合計ジャッジ時間 | 7,699 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
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))