結果

問題 No.272 NOT回路
ユーザー koukonkokoukonko
提出日時 2015-12-22 14:24:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 73,208 KB
実行使用メモリ 37,116 KB
最終ジャッジ日時 2024-09-18 18:36:32
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,984 KB
testcase_01 AC 56 ms
37,116 KB
testcase_02 AC 55 ms
36,656 KB
testcase_03 AC 56 ms
36,972 KB
testcase_04 AC 57 ms
36,968 KB
testcase_05 AC 58 ms
36,768 KB
testcase_06 AC 58 ms
37,020 KB
testcase_07 AC 56 ms
36,868 KB
testcase_08 AC 57 ms
36,976 KB
testcase_09 AC 56 ms
36,536 KB
testcase_10 AC 56 ms
37,020 KB
testcase_11 AC 56 ms
36,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			String line = buff.readLine();
			if(line.equals("1")){
				System.out.println("0");
			}else{
				System.out.println("1");
			}
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0