結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,328 KB
testcase_01 AC 135 ms
41,564 KB
testcase_02 AC 135 ms
41,592 KB
testcase_03 AC 135 ms
41,176 KB
testcase_04 AC 136 ms
41,444 KB
testcase_05 AC 134 ms
42,056 KB
testcase_06 AC 140 ms
41,872 KB
testcase_07 AC 138 ms
41,320 KB
testcase_08 AC 142 ms
41,740 KB
testcase_09 AC 143 ms
41,584 KB
testcase_10 AC 137 ms
41,720 KB
testcase_11 AC 141 ms
41,308 KB
testcase_12 AC 141 ms
41,868 KB
testcase_13 AC 134 ms
41,776 KB
testcase_14 AC 136 ms
41,436 KB
testcase_15 AC 134 ms
42,040 KB
testcase_16 AC 135 ms
41,400 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