結果

問題 No.272 NOT回路
ユーザー marumaru
提出日時 2016-03-20 20:51:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 270 bytes
コンパイル時間 4,518 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-10-01 12:07:46
合計ジャッジ時間 5,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,832 KB
testcase_01 AC 132 ms
41,484 KB
testcase_02 AC 130 ms
41,112 KB
testcase_03 AC 126 ms
41,152 KB
testcase_04 AC 127 ms
41,560 KB
testcase_05 AC 131 ms
41,036 KB
testcase_06 AC 128 ms
41,196 KB
testcase_07 AC 131 ms
41,172 KB
testcase_08 AC 132 ms
41,120 KB
testcase_09 AC 130 ms
41,064 KB
testcase_10 AC 130 ms
41,108 KB
testcase_11 AC 130 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_272 {
	public static void main(String[] args) {
	
		Scanner scanner = new Scanner(System.in);
		
		int n = scanner.nextInt();
		
		if (n == 0) {
			System.out.println(1);
		} else {
			System.out.println(0);
		} 
		
	}
}
0