結果

問題 No.337 P versus NP
ユーザー takeru-shi
提出日時 2017-10-26 17:25:45
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 3,232 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-11-21 20:05:40
合計ジャッジ時間 6,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14 WA * 9
権限があれば一括ダウンロードができます

ソースコード

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==0)
            System.out.println("==");
        else
            System.out.println("!=");

                sc.close();
    }
}
0