結果
| 問題 | No.8032 Unavailability of Inequality Signs |
| コンテスト | |
| ユーザー |
Rho
|
| 提出日時 | 2018-04-01 23:54:45 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
OLE
|
| 実行時間 | - |
| コード長 | 357 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 74,184 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-07-30 08:55:58 |
| 合計ジャッジ時間 | 7,543 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | OLE * 1 -- * 2 |
| other | -- * 7 |
ソースコード
#include"iostream"
#include"algorithm"
using namespace std;
#define int long long
signed main() {
int n;
scanf("%d", &n);
for (int i = 0; i != n; i++) {
int a, b; scanf("%d%d", &a,&b);
int m = max(a, b);
if (a == m&&b == m) {
printf("%c\n", '=');
}
else if (m == a) {
printf("%c\n", ('9' + 3));
}
else printf("%c\n", ('9' + 5));
}
}
Rho