結果

問題 No.337 P versus NP
ユーザー atkrymatkrym
提出日時 2016-10-19 14:03:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-11-22 15:07:58
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,236 KB
testcase_01 WA -
testcase_02 AC 110 ms
40,268 KB
testcase_03 AC 124 ms
41,224 KB
testcase_04 AC 119 ms
41,124 KB
testcase_05 WA -
testcase_06 AC 120 ms
41,120 KB
testcase_07 AC 123 ms
40,972 KB
testcase_08 AC 134 ms
41,384 KB
testcase_09 AC 131 ms
40,996 KB
testcase_10 AC 124 ms
41,164 KB
testcase_11 AC 127 ms
41,136 KB
testcase_12 AC 130 ms
41,180 KB
testcase_13 WA -
testcase_14 AC 127 ms
41,020 KB
testcase_15 AC 110 ms
40,100 KB
testcase_16 AC 128 ms
41,132 KB
testcase_17 AC 125 ms
41,028 KB
testcase_18 AC 118 ms
40,228 KB
testcase_19 AC 125 ms
40,996 KB
testcase_20 AC 127 ms
41,092 KB
testcase_21 AC 127 ms
41,140 KB
testcase_22 AC 131 ms
41,280 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