結果

問題 No.337 P versus NP
ユーザー Navi092ittNavi092itt
提出日時 2017-10-17 15:23:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 1,704 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 54,072 KB
最終ジャッジ日時 2024-11-17 21:52:41
合計ジャッジ時間 5,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,884 KB
testcase_01 AC 94 ms
52,960 KB
testcase_02 AC 100 ms
53,692 KB
testcase_03 AC 108 ms
53,852 KB
testcase_04 AC 95 ms
52,920 KB
testcase_05 AC 96 ms
52,976 KB
testcase_06 AC 103 ms
54,056 KB
testcase_07 AC 103 ms
53,960 KB
testcase_08 AC 93 ms
52,924 KB
testcase_09 AC 103 ms
53,792 KB
testcase_10 AC 103 ms
53,704 KB
testcase_11 AC 105 ms
54,072 KB
testcase_12 AC 100 ms
53,836 KB
testcase_13 AC 94 ms
53,040 KB
testcase_14 AC 103 ms
53,828 KB
testcase_15 AC 94 ms
52,948 KB
testcase_16 AC 102 ms
53,940 KB
testcase_17 AC 104 ms
54,040 KB
testcase_18 AC 104 ms
54,020 KB
testcase_19 AC 95 ms
52,944 KB
testcase_20 AC 104 ms
53,860 KB
testcase_21 AC 92 ms
52,564 KB
testcase_22 AC 103 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        //ここから処理開始

        int N = sc.nextInt();
        int P = sc.nextInt();

        if(P == N * P)    System.out.println("=");
        else    System.out.println("!=");

        //ここまで
        sc.close();
    }
}
0