結果

問題 No.337 P versus NP
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-24 16:08:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 2,879 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 37,072 KB
最終ジャッジ日時 2024-11-21 17:38:32
合計ジャッジ時間 4,861 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,600 KB
testcase_01 AC 49 ms
36,488 KB
testcase_02 AC 51 ms
36,628 KB
testcase_03 AC 50 ms
37,004 KB
testcase_04 AC 50 ms
37,004 KB
testcase_05 AC 52 ms
36,840 KB
testcase_06 AC 50 ms
36,984 KB
testcase_07 AC 51 ms
36,824 KB
testcase_08 AC 48 ms
37,016 KB
testcase_09 AC 51 ms
36,712 KB
testcase_10 AC 52 ms
36,908 KB
testcase_11 AC 55 ms
36,840 KB
testcase_12 AC 51 ms
37,072 KB
testcase_13 AC 48 ms
37,032 KB
testcase_14 AC 51 ms
36,928 KB
testcase_15 AC 50 ms
36,844 KB
testcase_16 AC 50 ms
36,800 KB
testcase_17 AC 50 ms
36,792 KB
testcase_18 AC 52 ms
36,572 KB
testcase_19 AC 51 ms
36,512 KB
testcase_20 AC 51 ms
36,912 KB
testcase_21 AC 51 ms
36,612 KB
testcase_22 AC 54 ms
37,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Program{
    public static void main(String[] args) throws IOException{
        String[] str = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
        int[] input= new int[2];
        for(int i=0; i < 2; i++)
            input[i] = Integer.parseInt(str[i]);
        if(input[0] == 1|| input[1] == 0) System.out.println("=");
        else System.out.println("!=");
    }
}
0