結果

問題 No.337 P versus NP
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 23:02:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 2,978 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-06-23 04:49:19
合計ジャッジ時間 6,409 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,316 KB
testcase_01 AC 104 ms
41,212 KB
testcase_02 AC 101 ms
40,972 KB
testcase_03 AC 103 ms
41,564 KB
testcase_04 AC 110 ms
41,324 KB
testcase_05 AC 105 ms
41,388 KB
testcase_06 AC 99 ms
41,380 KB
testcase_07 AC 115 ms
40,592 KB
testcase_08 AC 110 ms
40,280 KB
testcase_09 AC 115 ms
41,208 KB
testcase_10 AC 111 ms
41,264 KB
testcase_11 AC 115 ms
41,560 KB
testcase_12 AC 99 ms
41,368 KB
testcase_13 AC 99 ms
41,296 KB
testcase_14 AC 101 ms
41,084 KB
testcase_15 AC 114 ms
41,304 KB
testcase_16 AC 116 ms
40,528 KB
testcase_17 AC 112 ms
41,660 KB
testcase_18 AC 114 ms
41,052 KB
testcase_19 AC 118 ms
41,744 KB
testcase_20 AC 117 ms
41,328 KB
testcase_21 AC 111 ms
41,448 KB
testcase_22 AC 116 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con337 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int n = s.nextInt() , p = s.nextInt();
		s.close();
		if(p == n*p){
			System.out.println("=");
		}else{
			System.out.println("!=");
		}
	}

}
0