結果

問題 No.272 NOT回路
ユーザー kaoetayakaoetaya
提出日時 2016-11-21 20:07:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 178 bytes
コンパイル時間 2,814 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 54,000 KB
最終ジャッジ日時 2024-11-27 09:28:22
合計ジャッジ時間 4,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,812 KB
testcase_01 AC 107 ms
52,524 KB
testcase_02 AC 119 ms
53,712 KB
testcase_03 AC 105 ms
52,900 KB
testcase_04 AC 117 ms
53,788 KB
testcase_05 AC 118 ms
53,768 KB
testcase_06 AC 117 ms
53,620 KB
testcase_07 AC 115 ms
53,384 KB
testcase_08 AC 120 ms
53,952 KB
testcase_09 AC 122 ms
52,960 KB
testcase_10 AC 107 ms
52,660 KB
testcase_11 AC 117 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class pre {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
		System.out.println(s.nextInt()==0?1:0);
    }
}
0