結果

問題 No.272 NOT回路
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 19:24:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 281 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-25 21:57:30
合計ジャッジ時間 4,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,924 KB
testcase_01 AC 115 ms
41,212 KB
testcase_02 AC 103 ms
39,988 KB
testcase_03 AC 113 ms
41,144 KB
testcase_04 AC 115 ms
41,068 KB
testcase_05 AC 120 ms
41,036 KB
testcase_06 AC 115 ms
41,432 KB
testcase_07 AC 116 ms
41,036 KB
testcase_08 AC 119 ms
41,340 KB
testcase_09 AC 115 ms
41,472 KB
testcase_10 AC 116 ms
41,140 KB
testcase_11 AC 111 ms
40,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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);
        }
    }
}
0