結果

問題 No.337 P versus NP
ユーザー jimanojimano
提出日時 2018-01-13 17:31:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 3,780 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-12-24 00:43:21
合計ジャッジ時間 6,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,356 KB
testcase_01 AC 123 ms
40,396 KB
testcase_02 AC 124 ms
41,512 KB
testcase_03 AC 109 ms
41,512 KB
testcase_04 AC 123 ms
41,272 KB
testcase_05 AC 125 ms
41,628 KB
testcase_06 AC 123 ms
40,912 KB
testcase_07 AC 118 ms
39,964 KB
testcase_08 AC 122 ms
41,756 KB
testcase_09 AC 120 ms
41,212 KB
testcase_10 AC 121 ms
41,228 KB
testcase_11 AC 120 ms
41,028 KB
testcase_12 AC 127 ms
41,744 KB
testcase_13 AC 121 ms
41,148 KB
testcase_14 AC 118 ms
41,432 KB
testcase_15 AC 123 ms
40,972 KB
testcase_16 AC 130 ms
41,084 KB
testcase_17 AC 108 ms
41,464 KB
testcase_18 AC 124 ms
40,264 KB
testcase_19 AC 126 ms
41,372 KB
testcase_20 AC 125 ms
41,364 KB
testcase_21 AC 125 ms
41,328 KB
testcase_22 AC 122 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.util.Scanner;

public class No0337 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in);) {
			int N = sc.nextInt();
			int P = sc.nextInt();

			System.out.println((P == N * P) ? "=" : "!=");
		}
	}
}
0