結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー atkrymatkrym
提出日時 2016-12-28 10:44:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-12-15 07:35:39
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,972 KB
testcase_01 AC 127 ms
54,144 KB
testcase_02 AC 122 ms
54,064 KB
testcase_03 AC 120 ms
54,172 KB
testcase_04 AC 120 ms
53,884 KB
testcase_05 AC 123 ms
53,920 KB
testcase_06 AC 118 ms
53,772 KB
testcase_07 AC 120 ms
54,068 KB
testcase_08 AC 128 ms
54,028 KB
testcase_09 AC 126 ms
54,012 KB
testcase_10 AC 122 ms
54,088 KB
testcase_11 AC 119 ms
53,884 KB
testcase_12 AC 124 ms
53,904 KB
testcase_13 AC 119 ms
54,060 KB
testcase_14 AC 120 ms
54,556 KB
testcase_15 AC 121 ms
54,136 KB
testcase_16 AC 125 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String a = sc.next();
        String b = sc.next();
        int ai = 0;
        int bi = 0;
        
        try {
            ai = Integer.parseInt(a);
            bi = Integer.parseInt(b);
        } catch (Exception e) {
            System.out.println("NG");
            return;
        }
        
        if ((a.length()!=1&&a.indexOf("0")==0)||(b.length()!=1&&b.indexOf("0")==0)) {
            System.out.println("NG");
            return;
        }
        
        if (ai>12345||bi>12345) {
            System.out.println("NG");
            return;
        }
        
        System.out.println("OK");
    }
}
0