結果

問題 No.337 P versus NP
ユーザー imcgsknimcgskn
提出日時 2017-12-12 17:08:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-05-08 04:48:28
合計ジャッジ時間 5,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
52,872 KB
testcase_01 AC 125 ms
54,040 KB
testcase_02 AC 125 ms
54,068 KB
testcase_03 AC 128 ms
54,008 KB
testcase_04 AC 127 ms
53,924 KB
testcase_05 AC 132 ms
54,248 KB
testcase_06 AC 115 ms
52,880 KB
testcase_07 AC 124 ms
53,720 KB
testcase_08 AC 114 ms
52,732 KB
testcase_09 AC 131 ms
53,756 KB
testcase_10 AC 128 ms
53,852 KB
testcase_11 AC 115 ms
52,956 KB
testcase_12 AC 129 ms
54,292 KB
testcase_13 AC 130 ms
54,056 KB
testcase_14 AC 129 ms
54,328 KB
testcase_15 AC 130 ms
54,140 KB
testcase_16 AC 129 ms
54,016 KB
testcase_17 AC 130 ms
54,028 KB
testcase_18 AC 128 ms
54,176 KB
testcase_19 AC 131 ms
53,864 KB
testcase_20 AC 127 ms
53,980 KB
testcase_21 AC 114 ms
52,756 KB
testcase_22 AC 126 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Number {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        //ここから処理開始

        int num1 = sc.nextInt();
        int num2 = sc.nextInt();

        int sum = num1 * num2;

        if(num2 == sum){
            System.out.println("=");
        }
        else{
            System.out.println("!=");
        }

        //ここまで
        sc.close();
    }
}
0