結果

問題 No.337 P versus NP
ユーザー kuramukuramu
提出日時 2016-02-11 10:50:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 37,316 KB
最終ジャッジ日時 2024-09-22 00:24:48
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,948 KB
testcase_01 AC 48 ms
36,688 KB
testcase_02 AC 48 ms
37,116 KB
testcase_03 AC 49 ms
37,292 KB
testcase_04 AC 50 ms
36,960 KB
testcase_05 AC 49 ms
37,316 KB
testcase_06 AC 49 ms
37,204 KB
testcase_07 AC 49 ms
37,216 KB
testcase_08 AC 50 ms
37,280 KB
testcase_09 AC 49 ms
37,240 KB
testcase_10 AC 50 ms
37,228 KB
testcase_11 AC 50 ms
37,036 KB
testcase_12 AC 51 ms
37,220 KB
testcase_13 AC 51 ms
37,264 KB
testcase_14 AC 51 ms
37,084 KB
testcase_15 AC 50 ms
37,224 KB
testcase_16 AC 50 ms
37,212 KB
testcase_17 AC 52 ms
37,108 KB
testcase_18 AC 51 ms
36,960 KB
testcase_19 AC 52 ms
36,956 KB
testcase_20 AC 53 ms
36,860 KB
testcase_21 AC 53 ms
37,120 KB
testcase_22 AC 52 ms
36,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  String[] line = stdReader.readLine().split(" ");
	    	  if(line[0].equals("1") || line[1].equals("0")){
	    		  System.out.println("=");
	    	  }else{
	    		  System.out.println("!=");
	    	  }
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0