結果

問題 No.337 P versus NP
ユーザー KazukiAkitaKazukiAkita
提出日時 2017-10-26 17:28:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-11-21 20:05:47
合計ジャッジ時間 6,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,128 KB
testcase_01 AC 139 ms
53,716 KB
testcase_02 WA -
testcase_03 AC 136 ms
54,056 KB
testcase_04 AC 140 ms
53,964 KB
testcase_05 AC 136 ms
53,684 KB
testcase_06 WA -
testcase_07 AC 137 ms
54,136 KB
testcase_08 AC 138 ms
54,124 KB
testcase_09 AC 137 ms
53,944 KB
testcase_10 AC 136 ms
54,280 KB
testcase_11 AC 140 ms
54,028 KB
testcase_12 AC 141 ms
54,136 KB
testcase_13 AC 139 ms
53,864 KB
testcase_14 WA -
testcase_15 AC 138 ms
53,908 KB
testcase_16 AC 138 ms
54,136 KB
testcase_17 AC 138 ms
53,968 KB
testcase_18 AC 140 ms
54,284 KB
testcase_19 AC 135 ms
53,992 KB
testcase_20 AC 139 ms
54,008 KB
testcase_21 AC 141 ms
53,892 KB
testcase_22 AC 140 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        //ここから処理開始
        int N = sc.nextInt();
        int P = sc.nextInt();

        if(N == 1 || P == 1 || P == 0){
            System.out.println("=");

        }else{
            System.out.println("!=");
        }


            //ここまで
        sc.close();
    }
}
0