結果

問題 No.337 P versus NP
ユーザー rapurasurapurasu
提出日時 2022-07-17 03:44:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-06-29 04:47:50
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,516 KB
testcase_01 AC 119 ms
41,472 KB
testcase_02 AC 119 ms
41,432 KB
testcase_03 AC 114 ms
41,372 KB
testcase_04 AC 111 ms
41,520 KB
testcase_05 AC 112 ms
41,164 KB
testcase_06 AC 102 ms
41,856 KB
testcase_07 AC 115 ms
41,368 KB
testcase_08 AC 115 ms
41,568 KB
testcase_09 AC 113 ms
41,808 KB
testcase_10 AC 113 ms
41,200 KB
testcase_11 AC 106 ms
41,432 KB
testcase_12 AC 118 ms
41,248 KB
testcase_13 AC 112 ms
41,040 KB
testcase_14 AC 118 ms
41,380 KB
testcase_15 AC 101 ms
40,020 KB
testcase_16 AC 108 ms
41,584 KB
testcase_17 AC 109 ms
40,424 KB
testcase_18 AC 108 ms
41,180 KB
testcase_19 AC 108 ms
40,144 KB
testcase_20 AC 104 ms
41,532 KB
testcase_21 AC 108 ms
39,824 KB
testcase_22 AC 116 ms
41,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Random;
import java.util.Scanner;

public class Main {
    public static void main(String args[]){
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int P = scan.nextInt();
        if(P==N*P){
            System.out.println("=");
        }else{
            System.out.println("!=");
        }
    }
}
0