結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 22:49:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 41,960 KB
最終ジャッジ日時 2024-11-26 07:31:35
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String A = sc.next();
        String B = sc.next();
        int a = checker(A);
        int b = checker(B);
        if(a==0 && b==0){
            System.out.println("OK");
        }else{
            System.out.println("NG");
        }
    }
    static int checker(String S){
        try{
            int z = Integer.parseInt(S);
            if(z>12345 || z<0){
                return 1;
            }
            String t = String.valueOf(z);
            if( !(t.equals(S)) ){
                return 2;
            }
            return 0;
        } catch ( NumberFormatException e ) {
            return 3;
        }
    }
}
0