結果

問題 No.337 P versus NP
ユーザー fal_rndfal_rnd
提出日時 2016-11-04 21:28:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-05-03 22:10:39
合計ジャッジ時間 5,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,072 KB
testcase_01 AC 107 ms
39,736 KB
testcase_02 AC 107 ms
40,132 KB
testcase_03 AC 118 ms
41,260 KB
testcase_04 AC 114 ms
40,768 KB
testcase_05 AC 109 ms
39,980 KB
testcase_06 AC 106 ms
40,092 KB
testcase_07 AC 114 ms
40,856 KB
testcase_08 AC 111 ms
40,328 KB
testcase_09 AC 103 ms
39,744 KB
testcase_10 AC 110 ms
40,584 KB
testcase_11 AC 118 ms
40,868 KB
testcase_12 AC 118 ms
41,240 KB
testcase_13 AC 121 ms
41,228 KB
testcase_14 AC 118 ms
41,040 KB
testcase_15 AC 120 ms
41,408 KB
testcase_16 AC 108 ms
39,740 KB
testcase_17 AC 116 ms
41,236 KB
testcase_18 AC 105 ms
39,888 KB
testcase_19 AC 104 ms
39,760 KB
testcase_20 AC 117 ms
40,724 KB
testcase_21 AC 113 ms
40,084 KB
testcase_22 AC 119 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A {
	static Scanner s = new Scanner(System.in);

	public static void main(String[] args) {
		int n=Integer.parseInt(s.next()),p=Integer.parseInt(s.next());
		if(p==n*p){
			System.out.println("=");
		}else{
			System.out.println("!=");
		}
	}
}
0