結果

問題 No.337 P versus NP
ユーザー kuramukuramu
提出日時 2016-02-11 10:48:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 72,508 KB
実行使用メモリ 37,028 KB
最終ジャッジ日時 2024-09-22 00:22:27
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,564 KB
testcase_01 WA -
testcase_02 AC 55 ms
37,020 KB
testcase_03 AC 54 ms
36,724 KB
testcase_04 AC 55 ms
37,000 KB
testcase_05 WA -
testcase_06 AC 55 ms
36,432 KB
testcase_07 AC 56 ms
36,892 KB
testcase_08 AC 55 ms
36,636 KB
testcase_09 AC 55 ms
36,564 KB
testcase_10 AC 55 ms
36,448 KB
testcase_11 AC 56 ms
36,692 KB
testcase_12 AC 55 ms
36,864 KB
testcase_13 WA -
testcase_14 AC 55 ms
36,676 KB
testcase_15 AC 55 ms
37,028 KB
testcase_16 AC 55 ms
36,656 KB
testcase_17 AC 56 ms
36,296 KB
testcase_18 AC 55 ms
36,960 KB
testcase_19 AC 55 ms
36,864 KB
testcase_20 AC 56 ms
36,308 KB
testcase_21 AC 56 ms
36,548 KB
testcase_22 AC 55 ms
36,816 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")){
	    		  System.out.println("=");
	    	  }else{
	    		  System.out.println("!=");
	    	  }
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0