結果

問題 No.337 P versus NP
ユーザー aim_cpoaim_cpo
提出日時 2019-04-18 16:07:56
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 4,991 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-09-22 09:17:26
合計ジャッジ時間 7,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class TaskI {
    public static void main(String[] args) {
        Scanner cin = new Scanner(System.in);
        int n = cin.nextInt();
        int p = cin.nextInt();
        if (p != n * p) {
            System.out.println("!=");
        } else {
            System.out.println("==");
        }
    }
}
0