結果

問題 No.337 P versus NP
ユーザー tsunabittsunabit
提出日時 2018-05-27 20:00:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 3,265 ms
コンパイル使用メモリ 75,372 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-06-28 19:10:08
合計ジャッジ時間 6,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,340 KB
testcase_01 AC 122 ms
40,992 KB
testcase_02 AC 128 ms
41,228 KB
testcase_03 AC 107 ms
39,888 KB
testcase_04 AC 127 ms
41,384 KB
testcase_05 AC 119 ms
41,336 KB
testcase_06 AC 113 ms
41,236 KB
testcase_07 AC 115 ms
40,292 KB
testcase_08 AC 105 ms
40,212 KB
testcase_09 AC 107 ms
41,180 KB
testcase_10 AC 114 ms
41,572 KB
testcase_11 AC 104 ms
41,372 KB
testcase_12 AC 104 ms
41,300 KB
testcase_13 AC 114 ms
40,128 KB
testcase_14 AC 117 ms
41,004 KB
testcase_15 AC 121 ms
41,496 KB
testcase_16 AC 115 ms
40,116 KB
testcase_17 AC 119 ms
41,560 KB
testcase_18 AC 116 ms
40,992 KB
testcase_19 AC 122 ms
41,496 KB
testcase_20 AC 116 ms
40,212 KB
testcase_21 AC 114 ms
40,984 KB
testcase_22 AC 119 ms
41,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;

// ***問題文***
//整数 N,P が与えられます. P=NP か P≠NP かを判定するプログラムを書いてください. 
// ***入力***
// N P
// 入力は以下の制約を満たします.
// N,Pはともに整数
// −50≤N≤50
// −50≤P≤50
// ***出力***
// P=NP なら =,P≠NP なら != と 1 行で出力し, 最後に改行を出力してください. 

public class No337 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int p = sc.nextInt();
		System.out.println(p == n * p ? "=" : "!=");
	}
}
0