結果

問題 No.272 NOT回路
ユーザー sasakkisasakki
提出日時 2016-04-26 11:26:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 251 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-10-04 15:54:48
合計ジャッジ時間 3,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,676 KB
testcase_01 AC 99 ms
52,472 KB
testcase_02 AC 92 ms
52,412 KB
testcase_03 AC 108 ms
53,724 KB
testcase_04 AC 95 ms
52,812 KB
testcase_05 AC 107 ms
53,744 KB
testcase_06 AC 108 ms
53,948 KB
testcase_07 AC 104 ms
53,736 KB
testcase_08 AC 100 ms
53,964 KB
testcase_09 AC 104 ms
53,808 KB
testcase_10 AC 109 ms
54,068 KB
testcase_11 AC 105 ms
53,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		
		int i = Integer.parseInt(sc.next());
		
		if(i == 0){
			System.out.println(1);
		}
		else{
			System.out.println(0);
		}
	}
}
0