結果

問題 No.272 NOT回路
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-02 01:37:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 470 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 73,840 KB
実行使用メモリ 36,968 KB
最終ジャッジ日時 2024-11-15 21:53:00
合計ジャッジ時間 4,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,524 KB
testcase_01 AC 50 ms
36,744 KB
testcase_02 AC 52 ms
36,772 KB
testcase_03 AC 52 ms
36,756 KB
testcase_04 AC 51 ms
36,736 KB
testcase_05 AC 50 ms
36,968 KB
testcase_06 AC 50 ms
36,552 KB
testcase_07 AC 50 ms
36,784 KB
testcase_08 AC 51 ms
36,784 KB
testcase_09 AC 52 ms
36,896 KB
testcase_10 AC 50 ms
36,700 KB
testcase_11 AC 51 ms
36,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class No272 {
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			int input = Integer.parseInt(br.readLine());
			switch(input){
			    case 0:
			    	System.out.println(1);
			    	break;
			    case 1:
			    	System.out.println(0);
			    	break;
			}
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
		e.getStackTrace();
		}
	}
}
0