結果

問題 No.337 P versus NP
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-18 11:51:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-11-26 06:04:15
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,940 KB
testcase_01 AC 112 ms
41,444 KB
testcase_02 AC 105 ms
39,876 KB
testcase_03 AC 117 ms
41,240 KB
testcase_04 AC 114 ms
41,272 KB
testcase_05 AC 107 ms
41,304 KB
testcase_06 AC 105 ms
39,868 KB
testcase_07 AC 102 ms
40,116 KB
testcase_08 AC 113 ms
41,084 KB
testcase_09 AC 98 ms
39,676 KB
testcase_10 AC 114 ms
41,084 KB
testcase_11 AC 117 ms
41,692 KB
testcase_12 AC 123 ms
41,532 KB
testcase_13 AC 108 ms
40,240 KB
testcase_14 AC 121 ms
41,060 KB
testcase_15 AC 117 ms
41,108 KB
testcase_16 AC 117 ms
40,844 KB
testcase_17 AC 115 ms
41,236 KB
testcase_18 AC 103 ms
40,592 KB
testcase_19 AC 109 ms
40,680 KB
testcase_20 AC 114 ms
41,436 KB
testcase_21 AC 110 ms
40,548 KB
testcase_22 AC 117 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question337
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int n = scan.nextInt();
		int p = scan.nextInt();

		System.out.println(p==(n*p) ? "=" : "!=");
	}
}
0