結果

問題 No.337 P versus NP
ユーザー SagTokiSagToki
提出日時 2018-05-17 15:26:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-06-28 13:30:27
合計ジャッジ時間 7,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,240 KB
testcase_01 AC 133 ms
41,712 KB
testcase_02 AC 124 ms
41,448 KB
testcase_03 AC 129 ms
41,420 KB
testcase_04 AC 131 ms
41,412 KB
testcase_05 AC 130 ms
41,776 KB
testcase_06 AC 129 ms
41,532 KB
testcase_07 AC 130 ms
41,324 KB
testcase_08 AC 129 ms
41,488 KB
testcase_09 AC 131 ms
41,060 KB
testcase_10 AC 119 ms
40,152 KB
testcase_11 AC 132 ms
41,412 KB
testcase_12 AC 129 ms
41,272 KB
testcase_13 AC 118 ms
40,188 KB
testcase_14 AC 114 ms
41,316 KB
testcase_15 AC 129 ms
41,392 KB
testcase_16 AC 121 ms
40,376 KB
testcase_17 AC 127 ms
41,140 KB
testcase_18 AC 134 ms
41,084 KB
testcase_19 AC 120 ms
40,376 KB
testcase_20 AC 120 ms
40,384 KB
testcase_21 AC 130 ms
41,528 KB
testcase_22 AC 115 ms
41,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.InputMismatchException;

public class PversusNP {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        try{
        int N = scanner.nextInt();
        int P = scanner.nextInt();
        if(N < -50 || N > 50){
            System.out.println("Nの値は-50以上50以下の数字で入力してください");
            System.exit(0);
        }
        if(P < -50 || P > 50){
            System.out.println("Pの値は-50以上50以下の数字で入力してください");
            System.exit(0);
        }
        if(N * P == P){
            System.out.println("=");
        }else{
            System.out.println("!=");
        }
        }catch(InputMismatchException e){
            System.out.println("数字を入力してください");
        }catch(Exception E){
            System.out.println("予期せぬエラーです");
        }
    }
}
0