結果

問題 No.272 NOT回路
ユーザー ぴろずぴろず
提出日時 2015-08-28 22:20:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 191 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-07-18 15:09:43
合計ジャッジ時間 4,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,144 KB
testcase_01 AC 127 ms
41,004 KB
testcase_02 AC 126 ms
41,176 KB
testcase_03 AC 127 ms
41,376 KB
testcase_04 AC 111 ms
39,872 KB
testcase_05 AC 113 ms
40,116 KB
testcase_06 AC 115 ms
40,272 KB
testcase_07 AC 125 ms
41,000 KB
testcase_08 AC 113 ms
40,144 KB
testcase_09 AC 126 ms
41,276 KB
testcase_10 AC 126 ms
41,272 KB
testcase_11 AC 126 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no272;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println(1 - sc.nextInt());
	}

}
0