結果

問題 No.337 P versus NP
ユーザー abchsbriicabchsbriic
提出日時 2017-10-17 15:21:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-17 21:51:54
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,212 KB
testcase_01 AC 90 ms
40,996 KB
testcase_02 AC 105 ms
41,296 KB
testcase_03 AC 100 ms
40,140 KB
testcase_04 AC 104 ms
40,748 KB
testcase_05 AC 94 ms
39,956 KB
testcase_06 AC 102 ms
39,884 KB
testcase_07 AC 103 ms
41,064 KB
testcase_08 AC 103 ms
41,020 KB
testcase_09 AC 96 ms
41,256 KB
testcase_10 AC 93 ms
41,312 KB
testcase_11 AC 104 ms
40,068 KB
testcase_12 AC 91 ms
40,708 KB
testcase_13 AC 95 ms
40,952 KB
testcase_14 AC 95 ms
40,068 KB
testcase_15 AC 97 ms
41,120 KB
testcase_16 AC 105 ms
41,404 KB
testcase_17 AC 103 ms
40,988 KB
testcase_18 AC 104 ms
41,728 KB
testcase_19 AC 105 ms
41,452 KB
testcase_20 AC 104 ms
40,460 KB
testcase_21 AC 103 ms
41,120 KB
testcase_22 AC 107 ms
40,960 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