結果

問題 No.272 NOT回路
ユーザー 2ch_GreenApple2ch_GreenApple
提出日時 2015-09-06 09:23:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 299 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-07-19 04:20:04
合計ジャッジ時間 4,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,220 KB
testcase_01 AC 108 ms
41,380 KB
testcase_02 AC 115 ms
41,304 KB
testcase_03 AC 117 ms
41,012 KB
testcase_04 AC 117 ms
41,256 KB
testcase_05 AC 104 ms
41,204 KB
testcase_06 AC 121 ms
41,040 KB
testcase_07 AC 123 ms
41,136 KB
testcase_08 AC 116 ms
41,324 KB
testcase_09 AC 106 ms
41,156 KB
testcase_10 AC 105 ms
41,296 KB
testcase_11 AC 118 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {

    public static void main(String[] args) {
	    Scanner sc = new Scanner(System.in);
        int c =sc.nextInt();
        if (c==0){
            System.out.println("1");
        }else if (c==1){
            System.out.println("0");
        }
    }
}
0