結果

問題 No.272 NOT回路
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2015-12-19 01:35:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 277 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 77,048 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-09-16 08:48:35
合計ジャッジ時間 4,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,052 KB
testcase_01 AC 128 ms
41,228 KB
testcase_02 AC 125 ms
41,200 KB
testcase_03 AC 116 ms
41,420 KB
testcase_04 AC 116 ms
40,044 KB
testcase_05 AC 131 ms
41,148 KB
testcase_06 AC 128 ms
41,376 KB
testcase_07 AC 127 ms
40,996 KB
testcase_08 AC 113 ms
41,200 KB
testcase_09 AC 132 ms
41,284 KB
testcase_10 AC 123 ms
40,132 KB
testcase_11 AC 127 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
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 if(X == 1) {
    		System.out.println(0);
    	}
    }
}
0