結果
問題 | No.3032 Unavailability of Inequality Signs |
ユーザー | kohaku_kohaku |
提出日時 | 2018-04-01 22:53:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 165 ms / 2,000 ms |
コード長 | 829 bytes |
コンパイル時間 | 2,155 ms |
コンパイル使用メモリ | 74,864 KB |
実行使用メモリ | 41,784 KB |
最終ジャッジ日時 | 2024-06-26 06:02:34 |
合計ジャッジ時間 | 4,400 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,564 KB |
testcase_01 | AC | 135 ms
41,576 KB |
testcase_02 | AC | 137 ms
41,388 KB |
testcase_03 | AC | 136 ms
41,284 KB |
testcase_04 | AC | 133 ms
41,152 KB |
testcase_05 | AC | 151 ms
41,636 KB |
testcase_06 | AC | 159 ms
41,288 KB |
testcase_07 | AC | 148 ms
41,528 KB |
testcase_08 | AC | 154 ms
41,496 KB |
testcase_09 | AC | 165 ms
41,784 KB |
ソースコード
import java.util.*; import java.math.BigInteger; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int i = 0; while(true) { int a = sc.nextInt(); int b = sc.nextInt(); int judge = judge(a,b); if(judge == 0) { System.out.println("="); } else if(judge == 1){ System.out.println((char)(62)); } else { System.out.println((char)(60)); } i++; if(i == n) break; } } static int judge(int a, int b) { BigInteger as = new BigInteger(String.valueOf(a)); BigInteger bs = new BigInteger(String.valueOf(b)); return as.compareTo(bs); } }