結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー fal_rndfal_rnd
提出日時 2018-04-03 18:10:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 73,612 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-06-26 08:32:07
合計ジャッジ時間 4,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,176 KB
testcase_01 AC 137 ms
40,860 KB
testcase_02 AC 137 ms
41,200 KB
testcase_03 AC 140 ms
41,380 KB
testcase_04 AC 139 ms
41,512 KB
testcase_05 AC 154 ms
41,512 KB
testcase_06 AC 158 ms
41,212 KB
testcase_07 AC 150 ms
41,276 KB
testcase_08 AC 156 ms
41,568 KB
testcase_09 AC 173 ms
41,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[]$){
		Scanner s=new Scanner(System.in);
		for(int i=s.nextInt();i!=0;--i) {
			char v=0;
			switch(Integer.compare(s.nextInt(),s.nextInt())){
			case -1:
				v=60;
				break;
			case 0:
				v=61;
				break;
			case 1:
				v=62;
				break;
			}
			System.out.println(v);
		}
	}
}
0