結果
問題 | No.8032 Unavailability of Inequality Signs |
ユーザー | satanic |
提出日時 | 2018-04-02 02:12:13 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 299 bytes |
コンパイル時間 | 1,533 ms |
コンパイル使用メモリ | 164,624 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 06:28:09 |
合計ジャッジ時間 | 2,149 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
#include "bits/stdc++.h" int main() { int n; scanf("%d", &n); while (n--) { int a, b; scanf("%d%d", &a, &b); int c = a - b; if (c) { if (c - std::abs(c)) { printf("%c\n", '=' - 1); } else { printf("%c\n", '=' + 1); } } else { printf("=\n"); } } return 0; }