結果

問題 No.337 P versus NP
ユーザー YOSHIYOSHI
提出日時 2021-03-10 21:18:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 73,124 KB
実行使用メモリ 37,148 KB
最終ジャッジ日時 2024-04-20 15:26:11
合計ジャッジ時間 5,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,148 KB
testcase_01 AC 56 ms
37,068 KB
testcase_02 AC 57 ms
37,060 KB
testcase_03 AC 57 ms
37,076 KB
testcase_04 AC 55 ms
36,960 KB
testcase_05 AC 54 ms
37,128 KB
testcase_06 AC 56 ms
37,124 KB
testcase_07 AC 55 ms
36,940 KB
testcase_08 AC 54 ms
37,128 KB
testcase_09 AC 54 ms
36,860 KB
testcase_10 AC 54 ms
37,064 KB
testcase_11 AC 55 ms
37,028 KB
testcase_12 AC 55 ms
37,088 KB
testcase_13 AC 55 ms
37,084 KB
testcase_14 AC 56 ms
37,088 KB
testcase_15 AC 55 ms
37,104 KB
testcase_16 AC 55 ms
36,668 KB
testcase_17 AC 56 ms
36,912 KB
testcase_18 AC 56 ms
36,884 KB
testcase_19 AC 56 ms
36,668 KB
testcase_20 AC 58 ms
37,084 KB
testcase_21 AC 55 ms
37,084 KB
testcase_22 AC 54 ms
36,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000337_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String[] arr = br.readLine().split(" ");
		if(Integer.parseInt(arr[0]) == 1 || Integer.parseInt(arr[1]) == 0) {
			System.out.println("=");
		} else {
			System.out.println("!=");
		}
	}
}
0