結果

問題 No.272 NOT回路
ユーザー KinoshitaKinoshita
提出日時 2015-09-06 11:00:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 1,000 ms
コード長 517 bytes
コンパイル時間 1,760 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 50,272 KB
最終ジャッジ日時 2024-07-19 04:21:13
合計ジャッジ時間 2,891 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,992 KB
testcase_01 AC 48 ms
49,744 KB
testcase_02 AC 47 ms
49,664 KB
testcase_03 AC 49 ms
49,528 KB
testcase_04 AC 49 ms
49,964 KB
testcase_05 AC 48 ms
50,076 KB
testcase_06 AC 46 ms
49,820 KB
testcase_07 AC 49 ms
49,724 KB
testcase_08 AC 48 ms
50,056 KB
testcase_09 AC 47 ms
49,840 KB
testcase_10 AC 47 ms
50,272 KB
testcase_11 AC 47 ms
49,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	
	static Main byakko = new Main();
	static BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
	
	public static void main(String[] args)throws IOException{
		
		int x = byakko.Input();
		
		if(x == 0)
			System.out.println(1);
		else
			System.out.println(0);
		
		reader.close();
	}
	
	public int Input()throws IOException{
		return Integer.parseInt(reader.readLine());
	}
	
}
0