結果

問題 No.337 P versus NP
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 17:58:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-10-07 18:47:30
合計ジャッジ時間 5,998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,080 KB
testcase_01 AC 125 ms
41,188 KB
testcase_02 AC 112 ms
40,580 KB
testcase_03 AC 114 ms
39,924 KB
testcase_04 AC 116 ms
39,948 KB
testcase_05 AC 126 ms
41,564 KB
testcase_06 AC 114 ms
40,792 KB
testcase_07 AC 125 ms
41,156 KB
testcase_08 AC 126 ms
40,988 KB
testcase_09 AC 126 ms
41,064 KB
testcase_10 AC 121 ms
41,316 KB
testcase_11 AC 122 ms
41,180 KB
testcase_12 AC 123 ms
40,984 KB
testcase_13 AC 109 ms
41,552 KB
testcase_14 AC 154 ms
41,856 KB
testcase_15 AC 121 ms
41,084 KB
testcase_16 AC 122 ms
41,036 KB
testcase_17 AC 125 ms
41,108 KB
testcase_18 AC 123 ms
41,008 KB
testcase_19 AC 124 ms
41,140 KB
testcase_20 AC 120 ms
41,156 KB
testcase_21 AC 122 ms
40,880 KB
testcase_22 AC 119 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int p = sc.nextInt();
		if (p==n*p) {System.out.println("=");}
		else {System.out.println("!=");}
	}
}
0