結果
問題 |
No.3032 ホモトピー入門
|
ユーザー |
![]() |
提出日時 | 2025-06-12 14:33:10 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 210 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 67,204 KB |
最終ジャッジ日時 | 2025-06-12 14:33:22 |
合計ジャッジ時間 | 4,468 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 37 |
ソースコード
N = int(input()) for _ in range(N): a, b = map(int, input().split()) d = a - b if d == 0: print(chr(61)) else: sign = d // abs(d) print(chr(62) if sign == 1 else chr(60))