結果
| 問題 | No.8032 Unavailability of Inequality Signs |
| コンテスト | |
| ユーザー |
mukadenodaiou
|
| 提出日時 | 2018-04-01 22:28:06 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 334 bytes |
| 記録 | |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 49,656 KB |
| 実行使用メモリ | 6,144 KB |
| 最終ジャッジ日時 | 2026-03-12 20:43:09 |
| 合計ジャッジ時間 | 1,651 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 |
ソースコード
# include <algorithm>
#include<stdio.h>
int n,a,b,ct=0;
int main() {
scanf("%d", &n);
while(ct!=n-1){
scanf("%d""%d", &a, &b);
if (a == b)printf("%c""%s",char('0' + 13),"\n");
else {
if (std::max(a, b) == a)printf("%c""%s", char('0' + 14), "\n");
else printf("%c""%s", char('0' + 12), "\n");
}
++ct;
}
return 0;
}
mukadenodaiou