結果

問題 No.337 P versus NP
ユーザー FVRChanFVRChan
提出日時 2017-10-03 00:15:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-04-27 18:18:19
合計ジャッジ時間 4,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,796 KB
testcase_01 AC 112 ms
54,068 KB
testcase_02 AC 112 ms
53,896 KB
testcase_03 AC 97 ms
52,640 KB
testcase_04 AC 114 ms
54,284 KB
testcase_05 AC 112 ms
54,012 KB
testcase_06 AC 107 ms
53,344 KB
testcase_07 AC 101 ms
52,684 KB
testcase_08 AC 97 ms
52,488 KB
testcase_09 AC 113 ms
54,208 KB
testcase_10 AC 119 ms
54,320 KB
testcase_11 AC 111 ms
53,948 KB
testcase_12 AC 111 ms
54,096 KB
testcase_13 AC 111 ms
53,920 KB
testcase_14 AC 104 ms
52,752 KB
testcase_15 AC 110 ms
53,824 KB
testcase_16 AC 110 ms
54,076 KB
testcase_17 AC 115 ms
54,072 KB
testcase_18 AC 114 ms
54,104 KB
testcase_19 AC 102 ms
52,916 KB
testcase_20 AC 114 ms
53,928 KB
testcase_21 AC 112 ms
53,816 KB
testcase_22 AC 113 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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