結果

問題 No.272 NOT回路
ユーザー GrenacheGrenache
提出日時 2015-08-28 22:21:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 330 bytes
コンパイル時間 2,833 ms
コンパイル使用メモリ 77,592 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-18 15:10:28
合計ジャッジ時間 4,788 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,104 KB
testcase_01 AC 107 ms
53,808 KB
testcase_02 AC 107 ms
53,588 KB
testcase_03 AC 101 ms
52,684 KB
testcase_04 AC 111 ms
53,740 KB
testcase_05 AC 100 ms
52,544 KB
testcase_06 AC 110 ms
54,088 KB
testcase_07 AC 107 ms
53,820 KB
testcase_08 AC 110 ms
54,236 KB
testcase_09 AC 109 ms
53,516 KB
testcase_10 AC 104 ms
54,012 KB
testcase_11 AC 116 ms
53,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder272 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int x = sc.nextInt();

        if (x == 0) {
        	System.out.println("1");
        } else {
        	System.out.println("0");
        }

        sc.close();
    }
}
0