結果

問題 No.272 NOT回路
ユーザー kou6839kou6839
提出日時 2015-08-28 23:15:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 355 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-07-18 15:24:17
合計ジャッジ時間 3,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,548 KB
testcase_01 AC 111 ms
53,680 KB
testcase_02 AC 104 ms
52,808 KB
testcase_03 AC 114 ms
54,016 KB
testcase_04 AC 106 ms
53,892 KB
testcase_05 AC 106 ms
53,388 KB
testcase_06 AC 101 ms
52,912 KB
testcase_07 AC 109 ms
52,544 KB
testcase_08 AC 115 ms
53,640 KB
testcase_09 AC 94 ms
52,560 KB
testcase_10 AC 107 ms
53,396 KB
testcase_11 AC 105 ms
53,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.Thread.State;
import java.util.*;


public class Main {
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
    	Scanner sc = new Scanner(System.in);
    	
    	int x = sc.nextInt();
    	if(x==0){
    		System.out.println(1);
    	}else{
    		System.out.println(0);
    	}
    }
}
0