結果

問題 No.337 P versus NP
ユーザー jimanojimano
提出日時 2018-01-13 17:28:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 3,182 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 42,056 KB
最終ジャッジ日時 2024-06-06 10:10:31
合計ジャッジ時間 7,283 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,340 KB
testcase_01 AC 134 ms
41,452 KB
testcase_02 AC 135 ms
41,436 KB
testcase_03 AC 133 ms
41,444 KB
testcase_04 AC 129 ms
41,676 KB
testcase_05 AC 133 ms
41,260 KB
testcase_06 AC 131 ms
41,396 KB
testcase_07 AC 133 ms
41,420 KB
testcase_08 AC 131 ms
41,684 KB
testcase_09 AC 131 ms
41,700 KB
testcase_10 AC 132 ms
41,368 KB
testcase_11 AC 134 ms
41,448 KB
testcase_12 AC 133 ms
41,572 KB
testcase_13 AC 134 ms
41,320 KB
testcase_14 AC 132 ms
42,056 KB
testcase_15 AC 134 ms
41,276 KB
testcase_16 AC 133 ms
41,284 KB
testcase_17 AC 136 ms
41,468 KB
testcase_18 AC 134 ms
41,476 KB
testcase_19 AC 136 ms
41,656 KB
testcase_20 AC 136 ms
41,584 KB
testcase_21 AC 137 ms
41,320 KB
testcase_22 AC 139 ms
41,180 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();

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