結果

問題 No.272 NOT回路
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:31:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 225 bytes
コンパイル時間 2,948 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-09-19 19:48:38
合計ジャッジ時間 5,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,812 KB
testcase_01 AC 121 ms
54,172 KB
testcase_02 AC 122 ms
54,124 KB
testcase_03 AC 107 ms
53,036 KB
testcase_04 AC 109 ms
53,080 KB
testcase_05 AC 127 ms
53,868 KB
testcase_06 AC 121 ms
53,864 KB
testcase_07 AC 123 ms
53,712 KB
testcase_08 AC 119 ms
53,840 KB
testcase_09 AC 109 ms
53,052 KB
testcase_10 AC 123 ms
53,780 KB
testcase_11 AC 124 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con272 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int x = s.nextInt();
		s.close();
		System.out.println(Math.abs(1-x));

	}

}
0