結果

問題 No.337 P versus NP
ユーザー jimanojimano
提出日時 2018-01-13 17:28:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 3,623 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-12-24 00:42:15
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,848 KB
testcase_01 AC 123 ms
53,960 KB
testcase_02 AC 108 ms
52,948 KB
testcase_03 AC 126 ms
54,080 KB
testcase_04 AC 125 ms
54,120 KB
testcase_05 AC 120 ms
53,664 KB
testcase_06 AC 120 ms
54,172 KB
testcase_07 AC 113 ms
52,684 KB
testcase_08 AC 111 ms
52,792 KB
testcase_09 AC 122 ms
54,188 KB
testcase_10 AC 120 ms
54,144 KB
testcase_11 AC 128 ms
54,088 KB
testcase_12 AC 122 ms
53,900 KB
testcase_13 AC 109 ms
52,768 KB
testcase_14 AC 125 ms
54,004 KB
testcase_15 AC 112 ms
52,716 KB
testcase_16 AC 123 ms
53,924 KB
testcase_17 AC 110 ms
52,692 KB
testcase_18 AC 126 ms
54,208 KB
testcase_19 AC 127 ms
53,812 KB
testcase_20 AC 147 ms
53,976 KB
testcase_21 AC 148 ms
53,776 KB
testcase_22 AC 135 ms
54,044 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