結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー yagi2yagi2
提出日時 2017-04-15 19:11:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-18 18:01:08
合計ジャッジ時間 4,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,164 KB
testcase_01 AC 93 ms
41,224 KB
testcase_02 AC 102 ms
41,252 KB
testcase_03 AC 104 ms
41,040 KB
testcase_04 AC 97 ms
40,948 KB
testcase_05 AC 91 ms
40,520 KB
testcase_06 AC 102 ms
41,116 KB
testcase_07 AC 103 ms
41,300 KB
testcase_08 AC 89 ms
41,252 KB
testcase_09 AC 105 ms
41,172 KB
testcase_10 AC 103 ms
41,112 KB
testcase_11 AC 111 ms
41,056 KB
testcase_12 AC 109 ms
39,880 KB
testcase_13 AC 113 ms
41,248 KB
testcase_14 AC 114 ms
41,472 KB
testcase_15 AC 110 ms
41,080 KB
testcase_16 AC 106 ms
39,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String A = sc.next();
        String B = sc.next();

        if (checkFormat(A) && checkFormat(B)) {
            if (checkRange(A) && checkRange(B)) {
                System.out.println("OK");
            } else {
                System.out.println("NG");
            }
        } else {
            System.out.println("NG");
        }

    }
    private static boolean checkFormat(String str) {
        boolean result = true;

        for (int i = 0; i < str.length(); i++) {
            if (!Character.isDigit(str.charAt(i))) {
                result = false;
                break;
            }

            if (i == 0 && str.charAt(i) == '0' && str.length() > 1) {
                result = false;
                break;
            }
        }

        return result;
    }

    private static boolean checkRange(String str) {
        boolean result = true;

        int num = Integer.parseInt(str);
        
        if (num < 0 || num > 12345) {
            result = false;
            
        }
        
        return result;
    }
}
0