結果

問題 No.337 P versus NP
ユーザー uafr_csuafr_cs
提出日時 2016-02-02 18:10:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-09-21 20:02:53
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int P = sc.nextInt();
		System.out.println(P == N * P ? "=" : "!=");
		
		
	}

}
0