結果

問題 No.337 P versus NP
ユーザー mits58mits58
提出日時 2016-05-05 13:44:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-10-05 09:34:52
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,100 KB
testcase_01 AC 111 ms
53,548 KB
testcase_02 AC 102 ms
52,820 KB
testcase_03 AC 111 ms
53,792 KB
testcase_04 AC 113 ms
53,952 KB
testcase_05 AC 114 ms
53,768 KB
testcase_06 AC 117 ms
54,048 KB
testcase_07 AC 114 ms
53,916 KB
testcase_08 AC 106 ms
52,772 KB
testcase_09 AC 113 ms
53,792 KB
testcase_10 AC 115 ms
53,972 KB
testcase_11 AC 115 ms
54,048 KB
testcase_12 AC 123 ms
53,740 KB
testcase_13 AC 114 ms
54,020 KB
testcase_14 AC 117 ms
53,916 KB
testcase_15 AC 115 ms
53,920 KB
testcase_16 AC 102 ms
52,624 KB
testcase_17 AC 112 ms
53,836 KB
testcase_18 AC 114 ms
53,944 KB
testcase_19 AC 114 ms
53,972 KB
testcase_20 AC 113 ms
53,920 KB
testcase_21 AC 100 ms
52,692 KB
testcase_22 AC 114 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int n=sc.nextInt();
        	int p=sc.nextInt();
        	//P=NPP=NP なら =,P≠NPP≠NP なら != と 1 行で出力し, 最後に改行を出力してください.
        	if(p==n*p) System.out.println("=");
        	else System.out.println("!=");
        }
    }
}
0