結果

問題 No.337 P versus NP
ユーザー mobius_bkstmobius_bkst
提出日時 2016-01-29 22:45:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 879 bytes
コンパイル時間 3,155 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 37,096 KB
最終ジャッジ日時 2024-09-21 18:23:56
合計ジャッジ時間 4,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,948 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 48 ms
36,864 KB
testcase_04 WA -
testcase_05 AC 48 ms
36,824 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 49 ms
36,804 KB
testcase_11 WA -
testcase_12 AC 45 ms
36,912 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 46 ms
36,540 KB
testcase_16 AC 46 ms
36,824 KB
testcase_17 AC 46 ms
36,544 KB
testcase_18 AC 47 ms
36,892 KB
testcase_19 AC 45 ms
36,916 KB
testcase_20 AC 43 ms
36,676 KB
testcase_21 WA -
testcase_22 AC 44 ms
36,708 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[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