結果

問題 No.337 P versus NP
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 19:29:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-05-05 14:39:23
合計ジャッジ時間 6,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,288 KB
testcase_01 AC 112 ms
41,248 KB
testcase_02 AC 143 ms
40,940 KB
testcase_03 AC 141 ms
41,200 KB
testcase_04 AC 119 ms
40,028 KB
testcase_05 AC 136 ms
41,468 KB
testcase_06 AC 136 ms
41,236 KB
testcase_07 AC 120 ms
40,060 KB
testcase_08 AC 133 ms
41,064 KB
testcase_09 AC 99 ms
40,328 KB
testcase_10 AC 115 ms
41,184 KB
testcase_11 AC 113 ms
41,204 KB
testcase_12 AC 101 ms
40,300 KB
testcase_13 AC 104 ms
39,936 KB
testcase_14 AC 113 ms
41,068 KB
testcase_15 AC 126 ms
41,108 KB
testcase_16 AC 114 ms
41,336 KB
testcase_17 AC 112 ms
41,124 KB
testcase_18 AC 117 ms
41,352 KB
testcase_19 AC 112 ms
41,064 KB
testcase_20 AC 111 ms
41,064 KB
testcase_21 AC 114 ms
41,344 KB
testcase_22 AC 111 ms
40,988 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