結果

問題 No.337 P versus NP
ユーザー atkrymatkrym
提出日時 2016-10-19 14:03:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-05-02 04:33:49
合計ジャッジ時間 5,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
39,928 KB
testcase_01 WA -
testcase_02 AC 110 ms
40,920 KB
testcase_03 AC 108 ms
41,252 KB
testcase_04 AC 94 ms
39,724 KB
testcase_05 WA -
testcase_06 AC 108 ms
40,856 KB
testcase_07 AC 108 ms
41,072 KB
testcase_08 AC 96 ms
40,112 KB
testcase_09 AC 105 ms
41,344 KB
testcase_10 AC 95 ms
40,064 KB
testcase_11 AC 100 ms
40,112 KB
testcase_12 AC 112 ms
41,444 KB
testcase_13 WA -
testcase_14 AC 113 ms
41,076 KB
testcase_15 AC 116 ms
41,340 KB
testcase_16 AC 99 ms
39,784 KB
testcase_17 AC 104 ms
40,960 KB
testcase_18 AC 116 ms
41,024 KB
testcase_19 AC 111 ms
40,608 KB
testcase_20 AC 110 ms
41,316 KB
testcase_21 AC 108 ms
41,144 KB
testcase_22 AC 112 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        if (sc.nextInt() == 1) {
            System.out.println("=");
        } else {
            System.out.println("!=");
        }
    }
}
0