結果

問題 No.272 NOT回路
ユーザー FVRChanFVRChan
提出日時 2017-10-02 21:30:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 242 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-11-15 22:42:23
合計ジャッジ時間 4,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,980 KB
testcase_01 AC 135 ms
54,012 KB
testcase_02 AC 137 ms
53,912 KB
testcase_03 AC 135 ms
53,900 KB
testcase_04 AC 133 ms
53,868 KB
testcase_05 AC 135 ms
53,760 KB
testcase_06 AC 134 ms
54,088 KB
testcase_07 AC 139 ms
53,900 KB
testcase_08 AC 141 ms
53,980 KB
testcase_09 AC 136 ms
54,076 KB
testcase_10 AC 138 ms
54,048 KB
testcase_11 AC 137 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=sc.nextInt();
		if(n==0)System.out.println(1);
		else System.out.println(0);
	}
}
0