結果

問題 No.272 NOT回路
ユーザー mits58mits58
提出日時 2016-05-05 14:21:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 224 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-10-05 09:35:23
合計ジャッジ時間 3,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,852 KB
testcase_01 AC 109 ms
53,272 KB
testcase_02 AC 120 ms
53,876 KB
testcase_03 AC 110 ms
53,900 KB
testcase_04 AC 113 ms
53,908 KB
testcase_05 AC 110 ms
53,896 KB
testcase_06 AC 110 ms
53,900 KB
testcase_07 AC 116 ms
54,304 KB
testcase_08 AC 115 ms
53,932 KB
testcase_09 AC 120 ms
53,808 KB
testcase_10 AC 114 ms
54,168 KB
testcase_11 AC 116 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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