結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,080 KB
testcase_01 AC 119 ms
53,784 KB
testcase_02 WA -
testcase_03 AC 120 ms
53,880 KB
testcase_04 AC 114 ms
53,744 KB
testcase_05 AC 120 ms
53,868 KB
testcase_06 WA -
testcase_07 AC 109 ms
52,968 KB
testcase_08 AC 113 ms
53,816 KB
testcase_09 AC 118 ms
53,804 KB
testcase_10 AC 116 ms
53,900 KB
testcase_11 AC 119 ms
53,972 KB
testcase_12 AC 118 ms
53,968 KB
testcase_13 AC 105 ms
53,040 KB
testcase_14 WA -
testcase_15 AC 117 ms
53,864 KB
testcase_16 AC 117 ms
53,780 KB
testcase_17 AC 117 ms
54,260 KB
testcase_18 AC 103 ms
52,612 KB
testcase_19 AC 113 ms
53,652 KB
testcase_20 AC 109 ms
52,916 KB
testcase_21 AC 120 ms
54,224 KB
testcase_22 AC 107 ms
52,988 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