結果

問題 No.272 NOT回路
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-25 12:17:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 187 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 73,880 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-10-04 08:24:22
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,672 KB
testcase_01 AC 123 ms
54,136 KB
testcase_02 AC 106 ms
52,864 KB
testcase_03 AC 116 ms
53,932 KB
testcase_04 AC 107 ms
52,952 KB
testcase_05 AC 116 ms
53,860 KB
testcase_06 AC 121 ms
54,100 KB
testcase_07 AC 121 ms
53,748 KB
testcase_08 AC 122 ms
53,964 KB
testcase_09 AC 121 ms
54,008 KB
testcase_10 AC 107 ms
52,940 KB
testcase_11 AC 100 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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