結果

問題 No.337 P versus NP
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-01-30 08:16:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 41,352 KB
最終ジャッジ日時 2024-09-21 19:03:31
合計ジャッジ時間 5,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,144 KB
testcase_01 AC 115 ms
41,168 KB
testcase_02 AC 122 ms
41,340 KB
testcase_03 AC 121 ms
40,972 KB
testcase_04 AC 123 ms
41,352 KB
testcase_05 AC 124 ms
41,176 KB
testcase_06 AC 121 ms
40,976 KB
testcase_07 AC 121 ms
41,176 KB
testcase_08 AC 122 ms
40,976 KB
testcase_09 AC 124 ms
40,836 KB
testcase_10 AC 119 ms
40,824 KB
testcase_11 AC 116 ms
40,864 KB
testcase_12 AC 115 ms
41,260 KB
testcase_13 AC 114 ms
41,072 KB
testcase_14 AC 107 ms
40,364 KB
testcase_15 AC 107 ms
40,444 KB
testcase_16 AC 104 ms
39,984 KB
testcase_17 AC 104 ms
39,988 KB
testcase_18 AC 115 ms
41,068 KB
testcase_19 AC 109 ms
40,300 KB
testcase_20 AC 115 ms
40,840 KB
testcase_21 AC 117 ms
41,340 KB
testcase_22 AC 122 ms
40,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int p = in.nextInt();

        if(p != n *p) {
            System.out.println("!=");
        } else {
            System.out.println("=");
        }
    }
}
0