結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー 007p99lupin007p99lupin
提出日時 2018-04-01 23:53:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 64,672 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-08 13:04:58
合計ジャッジ時間 1,269 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "stdio.h"
#include "stdlib.h"
#include "iostream"
#include "algorithm"

int main()
{
	int N;
	scanf("%d",&N);
	int a,b;
	int i=0;
	//int ans[N];
	while(i!=N){
		scanf("%d",&a);
		scanf("%d",&b);
		if(a==b){
			//ans[i]= 61;
			printf("%c\n", 61);
			
		}
		else if(a==std::max(a,b)){
			//ans[i]= 62;
			printf("%c\n", 62);
		}
		else {
			//ans[i]= 60;
			printf("%c\n", 60);
		}
		i++;
	}
	// int j=0;
	// while (j!=N) {
	// 	printf("%c\n",ans[j]);
	// 	j++;
	// }
	return 0;
}
0