結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー tsunabittsunabit
提出日時 2019-06-09 17:57:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 3,072 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 55,932 KB
最終ジャッジ日時 2024-10-06 00:12:57
合計ジャッジ時間 5,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,000 KB
testcase_01 AC 120 ms
54,132 KB
testcase_02 AC 123 ms
54,004 KB
testcase_03 WA -
testcase_04 AC 113 ms
55,932 KB
testcase_05 AC 114 ms
53,996 KB
testcase_06 AC 104 ms
52,996 KB
testcase_07 AC 101 ms
52,928 KB
testcase_08 AC 102 ms
53,008 KB
testcase_09 AC 111 ms
54,132 KB
testcase_10 AC 105 ms
53,132 KB
testcase_11 AC 105 ms
53,064 KB
testcase_12 WA -
testcase_13 AC 117 ms
53,840 KB
testcase_14 AC 117 ms
53,700 KB
testcase_15 AC 107 ms
53,596 KB
testcase_16 AC 120 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No446 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        String a = sc.next(), b = sc.next();
        String atemp = a.replaceAll("\\D", "");
        String btemp = b.replaceAll("\\D", "");
        
        if(a.length() == atemp.length() && b.length() == btemp.length() && (a.length() > 1 && a.charAt(0) != '0') && (b.length() > 1 && b.charAt(0) != '0')) {
        	int ai = Integer.parseInt(atemp);
            int bi = Integer.parseInt(btemp);
        	if(ai <= 12345 && bi <= 12345) {
            	System.out.println("OK");
            }else {
            	System.out.println("NG");
            }
        }else {
        	System.out.println("NG");
        }
    }
}
0