結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,756 KB
testcase_01 AC 134 ms
41,316 KB
testcase_02 AC 133 ms
41,444 KB
testcase_03 AC 131 ms
41,408 KB
testcase_04 AC 136 ms
41,336 KB
testcase_05 AC 133 ms
41,696 KB
testcase_06 AC 134 ms
41,504 KB
testcase_07 AC 131 ms
41,420 KB
testcase_08 AC 133 ms
41,320 KB
testcase_09 AC 131 ms
41,668 KB
testcase_10 AC 136 ms
41,564 KB
testcase_11 AC 136 ms
41,572 KB
testcase_12 AC 137 ms
41,344 KB
testcase_13 AC 127 ms
41,388 KB
testcase_14 AC 130 ms
41,112 KB
testcase_15 AC 127 ms
41,452 KB
testcase_16 AC 128 ms
41,592 KB
testcase_17 AC 125 ms
41,412 KB
testcase_18 AC 131 ms
41,412 KB
testcase_19 AC 130 ms
41,568 KB
testcase_20 AC 135 ms
41,568 KB
testcase_21 AC 133 ms
41,412 KB
testcase_22 AC 133 ms
41,456 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