結果

問題 No.337 P versus NP
ユーザー mobius_bkstmobius_bkst
提出日時 2016-01-29 22:44:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 874 bytes
コンパイル時間 3,509 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 37,388 KB
最終ジャッジ日時 2024-09-21 18:23:50
合計ジャッジ時間 5,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 52 ms
37,044 KB
testcase_03 AC 51 ms
36,556 KB
testcase_04 AC 52 ms
36,708 KB
testcase_05 AC 52 ms
36,840 KB
testcase_06 AC 53 ms
37,008 KB
testcase_07 AC 53 ms
36,876 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 51 ms
36,560 KB
testcase_11 WA -
testcase_12 AC 52 ms
36,676 KB
testcase_13 WA -
testcase_14 AC 50 ms
36,548 KB
testcase_15 AC 50 ms
36,708 KB
testcase_16 AC 51 ms
36,976 KB
testcase_17 AC 52 ms
36,996 KB
testcase_18 AC 52 ms
36,884 KB
testcase_19 AC 56 ms
36,844 KB
testcase_20 AC 55 ms
37,088 KB
testcase_21 WA -
testcase_22 AC 52 ms
37,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;


public class No337 {
    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int[] a = strToIntArray(br.readLine());

            if(a[0] == a[1]){
                System.out.println("=");
            }else{
                System.out.println("!=");
            }

        } catch (Exception e) {
			e.printStackTrace();
            System.err.println("Error:" + e.getMessage());
        }
    }

    static int[] strToIntArray(String S) {
        String[] strArray = S.split(" ");
        int[] intArray = new int[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            intArray[i] = Integer.parseInt(strArray[i]);
        }
        return intArray;
    }
}
0