結果

問題 No.272 NOT回路
ユーザー YOSHIYOSHI
提出日時 2021-03-08 18:44:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 325 bytes
コンパイル時間 3,415 ms
コンパイル使用メモリ 72,728 KB
実行使用メモリ 37,088 KB
最終ジャッジ日時 2024-10-10 07:01:05
合計ジャッジ時間 4,785 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
36,784 KB
testcase_01 AC 57 ms
36,780 KB
testcase_02 AC 56 ms
36,980 KB
testcase_03 AC 57 ms
36,684 KB
testcase_04 AC 57 ms
36,816 KB
testcase_05 AC 58 ms
36,412 KB
testcase_06 AC 57 ms
37,008 KB
testcase_07 AC 58 ms
37,088 KB
testcase_08 AC 57 ms
36,696 KB
testcase_09 AC 59 ms
36,832 KB
testcase_10 AC 60 ms
36,416 KB
testcase_11 AC 57 ms
37,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000272_Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		System.out.println(1 - Integer.parseInt(br.readLine()));
	}
}
0