結果

問題 No.272 NOT回路
ユーザー yagi2yagi2
提出日時 2017-04-20 15:48:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 203 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-07-19 21:00:15
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,300 KB
testcase_01 AC 118 ms
40,948 KB
testcase_02 AC 101 ms
39,792 KB
testcase_03 AC 104 ms
40,172 KB
testcase_04 AC 113 ms
41,024 KB
testcase_05 AC 104 ms
39,992 KB
testcase_06 AC 114 ms
41,296 KB
testcase_07 AC 116 ms
41,272 KB
testcase_08 AC 102 ms
40,120 KB
testcase_09 AC 107 ms
40,572 KB
testcase_10 AC 103 ms
39,736 KB
testcase_11 AC 117 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println((sc.next().equals("1"))? "0" : "1");
    }
}
0