結果

問題 No.272 NOT回路
ユーザー yun_appyun_app
提出日時 2016-05-11 23:54:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 342 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 50,236 KB
最終ジャッジ日時 2024-10-05 13:51:34
合計ジャッジ時間 3,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,236 KB
testcase_01 AC 51 ms
36,552 KB
testcase_02 AC 51 ms
37,092 KB
testcase_03 AC 51 ms
37,052 KB
testcase_04 AC 51 ms
36,752 KB
testcase_05 AC 51 ms
37,060 KB
testcase_06 AC 51 ms
36,896 KB
testcase_07 AC 51 ms
36,984 KB
testcase_08 AC 50 ms
36,552 KB
testcase_09 AC 52 ms
36,820 KB
testcase_10 AC 51 ms
36,884 KB
testcase_11 AC 52 ms
36,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone{
    public static void main(String[] args) throws Exception{
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        System.out.println(line.equals("0")?1:0);
    }
}
0