結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー yagi2yagi2
提出日時 2017-04-15 19:06:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 2,678 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-07-18 18:00:45
合計ジャッジ時間 5,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,300 KB
testcase_01 AC 123 ms
41,176 KB
testcase_02 AC 109 ms
40,268 KB
testcase_03 AC 111 ms
40,412 KB
testcase_04 AC 124 ms
41,168 KB
testcase_05 AC 129 ms
41,600 KB
testcase_06 WA -
testcase_07 AC 128 ms
41,352 KB
testcase_08 WA -
testcase_09 AC 127 ms
41,344 KB
testcase_10 AC 127 ms
41,172 KB
testcase_11 AC 125 ms
41,036 KB
testcase_12 AC 125 ms
41,448 KB
testcase_13 AC 128 ms
41,400 KB
testcase_14 AC 123 ms
41,232 KB
testcase_15 AC 126 ms
41,304 KB
testcase_16 AC 123 ms
41,232 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)) {
            System.out.println("OK");
        } 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;
    }
}
0