結果

問題 No.272 NOT回路
ユーザー jimanojimano
提出日時 2016-01-11 12:01:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 459 bytes
コンパイル時間 3,867 ms
コンパイル使用メモリ 73,148 KB
実行使用メモリ 37,188 KB
最終ジャッジ日時 2024-09-19 18:46:13
合計ジャッジ時間 4,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,932 KB
testcase_01 AC 54 ms
37,136 KB
testcase_02 AC 55 ms
37,120 KB
testcase_03 AC 56 ms
36,964 KB
testcase_04 AC 54 ms
37,188 KB
testcase_05 AC 53 ms
37,020 KB
testcase_06 AC 53 ms
37,040 KB
testcase_07 AC 54 ms
36,864 KB
testcase_08 AC 54 ms
37,172 KB
testcase_09 AC 54 ms
36,888 KB
testcase_10 AC 54 ms
36,824 KB
testcase_11 AC 54 ms
36,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No0272 {
	public static void main(String[] args) {
		try (BufferedReader br = 
				new BufferedReader(new InputStreamReader(System.in))) {
	        int N = Integer.parseInt(br.readLine());
	        
	        if(N == 0) System.out.println(1);
	        else System.out.println(0);
	        
		} catch (IOException e) {
			e.printStackTrace();
		}
    }
}
0