結果

問題 No.337 P versus NP
ユーザー fal_rndfal_rnd
提出日時 2016-11-04 21:28:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 3,973 ms
コンパイル使用メモリ 78,164 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-11-25 03:00:02
合計ジャッジ時間 5,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,896 KB
testcase_01 AC 108 ms
53,948 KB
testcase_02 AC 93 ms
52,096 KB
testcase_03 AC 111 ms
54,020 KB
testcase_04 AC 115 ms
53,900 KB
testcase_05 AC 111 ms
53,684 KB
testcase_06 AC 97 ms
52,808 KB
testcase_07 AC 103 ms
53,120 KB
testcase_08 AC 119 ms
53,980 KB
testcase_09 AC 116 ms
53,936 KB
testcase_10 AC 121 ms
53,880 KB
testcase_11 AC 121 ms
53,780 KB
testcase_12 AC 126 ms
53,840 KB
testcase_13 AC 117 ms
53,716 KB
testcase_14 AC 120 ms
54,136 KB
testcase_15 AC 118 ms
53,856 KB
testcase_16 AC 119 ms
53,772 KB
testcase_17 AC 106 ms
53,052 KB
testcase_18 AC 120 ms
54,088 KB
testcase_19 AC 119 ms
53,724 KB
testcase_20 AC 112 ms
53,596 KB
testcase_21 AC 107 ms
53,544 KB
testcase_22 AC 110 ms
53,980 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