結果

問題 No.272 NOT回路
ユーザー samplelpmas
提出日時 2016-12-15 09:02:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 240 bytes
コンパイル時間 4,048 ms
コンパイル使用メモリ 73,748 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-11-30 08:13:14
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int X = sc.nextInt();

        int not = 1 - X;

        System.out.println(not);

    }

}
0