結果

問題 No.337 P versus NP
ユーザー shoootshooot
提出日時 2017-12-12 17:45:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-12-14 06:07:15
合計ジャッジ時間 7,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,972 KB
testcase_01 AC 135 ms
54,256 KB
testcase_02 AC 132 ms
54,224 KB
testcase_03 AC 136 ms
54,088 KB
testcase_04 AC 136 ms
54,220 KB
testcase_05 AC 134 ms
54,180 KB
testcase_06 AC 136 ms
54,148 KB
testcase_07 AC 133 ms
54,268 KB
testcase_08 AC 134 ms
53,976 KB
testcase_09 AC 136 ms
54,028 KB
testcase_10 AC 135 ms
53,964 KB
testcase_11 AC 137 ms
54,296 KB
testcase_12 AC 131 ms
54,020 KB
testcase_13 AC 132 ms
54,120 KB
testcase_14 AC 137 ms
54,172 KB
testcase_15 AC 132 ms
54,132 KB
testcase_16 AC 135 ms
54,364 KB
testcase_17 AC 121 ms
52,820 KB
testcase_18 AC 131 ms
54,232 KB
testcase_19 AC 135 ms
54,256 KB
testcase_20 AC 133 ms
54,244 KB
testcase_21 AC 142 ms
54,184 KB
testcase_22 AC 118 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class NP {
    public static void main(String[] args){
        Scanner stdIn = new Scanner(System.in);

        //System.out.print("n:");
        int n = stdIn.nextInt();

        //System.out.print("p:");
        int p = stdIn.nextInt();

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