結果

問題 No.272 NOT回路
ユーザー GchansanjouGchansanjou
提出日時 2018-02-14 22:59:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 527 bytes
コンパイル時間 3,037 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 37,164 KB
最終ジャッジ日時 2024-06-02 12:02:15
合計ジャッジ時間 4,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,540 KB
testcase_01 AC 53 ms
37,124 KB
testcase_02 AC 52 ms
37,104 KB
testcase_03 AC 52 ms
36,968 KB
testcase_04 AC 52 ms
37,156 KB
testcase_05 AC 52 ms
37,004 KB
testcase_06 AC 52 ms
37,092 KB
testcase_07 AC 51 ms
36,668 KB
testcase_08 AC 50 ms
37,160 KB
testcase_09 AC 52 ms
37,164 KB
testcase_10 AC 54 ms
37,036 KB
testcase_11 AC 51 ms
36,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00272 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
		int input;
		try {
			input = Integer.parseInt(bufferedReader.readLine());
			System.out.println(input == 0 ? 1 : 0);
		} catch (NumberFormatException | IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}

	}

}
0