結果

問題 No.337 P versus NP
ユーザー 水野嶺水野嶺
提出日時 2020-05-28 15:38:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 75,252 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-10-13 04:12:28
合計ジャッジ時間 5,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,100 KB
testcase_01 AC 124 ms
54,008 KB
testcase_02 AC 124 ms
54,080 KB
testcase_03 AC 126 ms
54,032 KB
testcase_04 AC 110 ms
54,324 KB
testcase_05 AC 126 ms
54,176 KB
testcase_06 AC 128 ms
54,024 KB
testcase_07 AC 126 ms
54,176 KB
testcase_08 AC 120 ms
53,684 KB
testcase_09 AC 118 ms
53,972 KB
testcase_10 AC 120 ms
53,996 KB
testcase_11 AC 121 ms
54,092 KB
testcase_12 AC 118 ms
54,044 KB
testcase_13 AC 110 ms
52,776 KB
testcase_14 AC 121 ms
54,188 KB
testcase_15 AC 119 ms
53,796 KB
testcase_16 AC 120 ms
53,968 KB
testcase_17 AC 123 ms
53,844 KB
testcase_18 AC 127 ms
54,060 KB
testcase_19 AC 127 ms
53,840 KB
testcase_20 AC 126 ms
54,060 KB
testcase_21 AC 123 ms
53,832 KB
testcase_22 AC 125 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

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