結果

問題 No.272 NOT回路
ユーザー koko_ukoko_u
提出日時 2015-10-05 00:03:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 1,000 ms
コード長 687 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 36,916 KB
最終ジャッジ日時 2024-07-19 19:36:23
合計ジャッジ時間 3,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,892 KB
testcase_01 AC 45 ms
36,848 KB
testcase_02 AC 44 ms
36,616 KB
testcase_03 AC 45 ms
36,884 KB
testcase_04 AC 45 ms
36,500 KB
testcase_05 AC 44 ms
36,880 KB
testcase_06 AC 47 ms
36,916 KB
testcase_07 AC 47 ms
36,812 KB
testcase_08 AC 49 ms
36,708 KB
testcase_09 AC 45 ms
36,856 KB
testcase_10 AC 44 ms
36,712 KB
testcase_11 AC 44 ms
36,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.co.kokou.sample.no272;

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

public class Main {
    public static void main(String[] args) {
        try (InputStreamReader is = new InputStreamReader(System.in);
             BufferedReader br = new BufferedReader(is)) {

            String value = br.readLine();
            int x = Integer.parseInt(value);
            switch (x) {
            case 0:
                System.out.println(1);
                break;
            case 1:
                System.out.println(0);
                break;
            default:
            }
        } catch (IOException e) {
        }
    }
}
0