結果

問題 No.337 P versus NP
ユーザー sasakkisasakki
提出日時 2016-03-10 11:35:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-09-24 17:29:46
合計ジャッジ時間 5,796 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,884 KB
testcase_01 AC 109 ms
52,852 KB
testcase_02 AC 124 ms
54,032 KB
testcase_03 AC 120 ms
54,024 KB
testcase_04 AC 125 ms
53,748 KB
testcase_05 AC 118 ms
53,864 KB
testcase_06 AC 121 ms
54,416 KB
testcase_07 AC 113 ms
53,028 KB
testcase_08 AC 124 ms
54,284 KB
testcase_09 AC 107 ms
53,028 KB
testcase_10 AC 109 ms
52,996 KB
testcase_11 AC 124 ms
53,884 KB
testcase_12 AC 123 ms
54,092 KB
testcase_13 AC 111 ms
52,944 KB
testcase_14 AC 126 ms
54,268 KB
testcase_15 AC 109 ms
52,916 KB
testcase_16 AC 125 ms
54,248 KB
testcase_17 AC 123 ms
54,016 KB
testcase_18 AC 123 ms
54,068 KB
testcase_19 AC 128 ms
53,940 KB
testcase_20 AC 126 ms
54,456 KB
testcase_21 AC 127 ms
54,056 KB
testcase_22 AC 123 ms
53,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class main{
    public static void main(String srgs[]){
	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