結果

問題 No.337 P versus NP
ユーザー kuramukuramu
提出日時 2016-02-11 10:48:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 1,738 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2023-10-21 22:54:16
合計ジャッジ時間 3,909 ms
ジャッジサーバーID
(参考情報)
judge12 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,532 KB
testcase_01 WA -
testcase_02 AC 49 ms
51,488 KB
testcase_03 AC 51 ms
53,524 KB
testcase_04 AC 50 ms
51,504 KB
testcase_05 WA -
testcase_06 AC 49 ms
53,548 KB
testcase_07 AC 50 ms
53,532 KB
testcase_08 AC 50 ms
53,528 KB
testcase_09 AC 48 ms
52,440 KB
testcase_10 AC 49 ms
53,528 KB
testcase_11 AC 49 ms
53,472 KB
testcase_12 AC 49 ms
53,524 KB
testcase_13 WA -
testcase_14 AC 49 ms
53,524 KB
testcase_15 AC 50 ms
53,528 KB
testcase_16 AC 49 ms
53,536 KB
testcase_17 AC 49 ms
53,468 KB
testcase_18 AC 50 ms
53,532 KB
testcase_19 AC 50 ms
52,460 KB
testcase_20 AC 48 ms
53,532 KB
testcase_21 AC 49 ms
52,428 KB
testcase_22 AC 49 ms
53,528 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