結果
問題 | No.3032 ホモトピー入門 |
ユーザー |
![]() |
提出日時 | 2025-03-20 21:03:59 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 495 ms |
コンパイル使用メモリ | 82,644 KB |
実行使用メモリ | 67,400 KB |
最終ジャッジ日時 | 2025-03-20 21:04:09 |
合計ジャッジ時間 | 5,179 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 37 |
ソースコード
n = int(input())for _ in range(n):a, b = map(int, input().split())d = a - bif d == 0:print("=")else:sign = d // abs(d)print(">" if sign == 1 else "<")