結果

問題 No.3032 Unavailability of Inequality Signs
ユーザー NishionyamaNishionyama
提出日時 2019-04-01 16:26:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 42,088 KB
最終ジャッジ日時 2024-05-04 01:22:56
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,372 KB
testcase_01 AC 121 ms
41,440 KB
testcase_02 AC 117 ms
41,152 KB
testcase_03 AC 116 ms
41,800 KB
testcase_04 AC 116 ms
41,516 KB
testcase_05 AC 144 ms
41,784 KB
testcase_06 AC 142 ms
41,496 KB
testcase_07 AC 135 ms
41,840 KB
testcase_08 AC 142 ms
41,484 KB
testcase_09 AC 163 ms
42,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main{
    public static void main(String args[]){

        Scanner sc = new Scanner( System.in );
        int N = sc.nextInt();
        while( N-- != 0 ){
            int a = sc.nextInt();
            int b = sc.nextInt();
            int c = 0;
            if( a == b ){
                c = 61;
            }else if( Math.max(a,b) == a ){
                c = 62;
            }else{
                c = 60;
            }
            System.out.printf( "%c\n", c );
        }
    }
}


0