結果

問題 No.337 P versus NP
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 19:29:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-11-27 12:42:19
合計ジャッジ時間 5,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,980 KB
testcase_01 AC 115 ms
40,768 KB
testcase_02 AC 108 ms
40,208 KB
testcase_03 AC 105 ms
40,084 KB
testcase_04 AC 100 ms
39,996 KB
testcase_05 AC 102 ms
40,152 KB
testcase_06 AC 96 ms
39,884 KB
testcase_07 AC 104 ms
39,876 KB
testcase_08 AC 104 ms
39,856 KB
testcase_09 AC 105 ms
39,840 KB
testcase_10 AC 100 ms
40,120 KB
testcase_11 AC 104 ms
40,344 KB
testcase_12 AC 104 ms
39,880 KB
testcase_13 AC 101 ms
39,964 KB
testcase_14 AC 111 ms
40,796 KB
testcase_15 AC 100 ms
39,892 KB
testcase_16 AC 111 ms
41,232 KB
testcase_17 AC 112 ms
41,116 KB
testcase_18 AC 108 ms
40,768 KB
testcase_19 AC 112 ms
41,040 KB
testcase_20 AC 114 ms
41,148 KB
testcase_21 AC 102 ms
39,780 KB
testcase_22 AC 110 ms
40,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y337 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt(), p = sc.nextInt();
		System.out.println(p==n*p?"=":"!=");
	}
}
0