結果
| 問題 |
No.3032 ホモトピー入門
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-04-16 15:48:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 208 bytes |
| コンパイル時間 | 256 ms |
| コンパイル使用メモリ | 81,548 KB |
| 実行使用メモリ | 66,328 KB |
| 最終ジャッジ日時 | 2025-04-16 15:50:22 |
| 合計ジャッジ時間 | 3,944 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 37 |
ソースコード
n = int(input())
for _ in range(n):
a, b = map(int, input().split())
if a == b:
print(chr(61))
else:
d = a - b
s = d // abs(d)
print(chr(62) if s == 1 else chr(60))
lam6er