結果

問題 No.272 NOT回路
ユーザー newoota0331newoota0331
提出日時 2016-09-02 09:49:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 421 bytes
コンパイル時間 4,402 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-11-15 17:58:00
合計ジャッジ時間 5,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,324 KB
testcase_01 AC 136 ms
41,376 KB
testcase_02 AC 134 ms
41,444 KB
testcase_03 AC 132 ms
41,404 KB
testcase_04 AC 134 ms
41,240 KB
testcase_05 AC 134 ms
41,608 KB
testcase_06 AC 134 ms
41,444 KB
testcase_07 AC 134 ms
41,480 KB
testcase_08 AC 131 ms
41,192 KB
testcase_09 AC 133 ms
41,132 KB
testcase_10 AC 131 ms
41,564 KB
testcase_11 AC 134 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		Scanner sc = new Scanner(System.in);
		
		int a;
		a = sc.nextInt();
		if(a==1){
			System.out.println(0);
		}else{
			System.out.println(1);
		}
	}
}
0