結果

問題 No.272 NOT回路
ユーザー yamax3232yamax3232
提出日時 2017-02-14 10:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 324 bytes
コンパイル時間 3,884 ms
コンパイル使用メモリ 77,416 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-06-09 11:42:12
合計ジャッジ時間 6,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,100 KB
testcase_01 AC 132 ms
41,560 KB
testcase_02 AC 121 ms
41,028 KB
testcase_03 AC 130 ms
41,140 KB
testcase_04 AC 126 ms
41,408 KB
testcase_05 AC 130 ms
41,280 KB
testcase_06 AC 134 ms
41,524 KB
testcase_07 AC 125 ms
41,536 KB
testcase_08 AC 129 ms
41,232 KB
testcase_09 AC 127 ms
41,368 KB
testcase_10 AC 127 ms
41,684 KB
testcase_11 AC 126 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Not {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		int a=kb.nextInt();
		switch(a){
		case 0:System.out.println("1");break;
		case 1:System.out.println("0");break;
		default:break;

		}
	}

}
0