結果

問題 No.337 P versus NP
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-18 11:51:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 74,736 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-11-26 06:04:15
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question337
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int n = scan.nextInt();
		int p = scan.nextInt();

		System.out.println(p==(n*p) ? "=" : "!=");
	}
}
0