結果

問題 No.272 NOT回路
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-30 12:03:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 198 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-05-05 15:30:19
合計ジャッジ時間 4,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,944 KB
testcase_01 AC 115 ms
41,120 KB
testcase_02 AC 101 ms
40,264 KB
testcase_03 AC 117 ms
40,872 KB
testcase_04 AC 123 ms
41,412 KB
testcase_05 AC 120 ms
41,292 KB
testcase_06 AC 125 ms
41,012 KB
testcase_07 AC 105 ms
40,304 KB
testcase_08 AC 123 ms
41,324 KB
testcase_09 AC 119 ms
41,008 KB
testcase_10 AC 114 ms
41,216 KB
testcase_11 AC 121 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question272
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int x = scan.nextInt();
		
		System.out.println(x==0 ? 1 : 0);
	}
}
0