結果

問題 No.337 P versus NP
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-24 16:08:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 50,392 KB
最終ジャッジ日時 2024-05-01 13:07:06
合計ジャッジ時間 5,159 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,240 KB
testcase_01 AC 54 ms
50,244 KB
testcase_02 AC 55 ms
50,240 KB
testcase_03 AC 55 ms
50,108 KB
testcase_04 AC 54 ms
50,260 KB
testcase_05 AC 51 ms
50,184 KB
testcase_06 AC 52 ms
50,164 KB
testcase_07 AC 52 ms
49,804 KB
testcase_08 AC 52 ms
49,920 KB
testcase_09 AC 53 ms
49,812 KB
testcase_10 AC 51 ms
50,072 KB
testcase_11 AC 52 ms
50,240 KB
testcase_12 AC 51 ms
50,212 KB
testcase_13 AC 51 ms
49,948 KB
testcase_14 AC 51 ms
49,992 KB
testcase_15 AC 51 ms
50,276 KB
testcase_16 AC 50 ms
49,848 KB
testcase_17 AC 54 ms
50,392 KB
testcase_18 AC 52 ms
49,944 KB
testcase_19 AC 51 ms
50,164 KB
testcase_20 AC 51 ms
50,124 KB
testcase_21 AC 52 ms
50,252 KB
testcase_22 AC 55 ms
50,364 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