結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー tsunabittsunabit
提出日時 2019-06-09 17:54:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 4,652 ms
コンパイル使用メモリ 75,168 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-10-06 00:12:27
合計ジャッジ時間 6,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,048 KB
testcase_01 AC 125 ms
41,280 KB
testcase_02 AC 113 ms
39,916 KB
testcase_03 WA -
testcase_04 AC 127 ms
41,468 KB
testcase_05 AC 113 ms
41,412 KB
testcase_06 AC 126 ms
41,388 KB
testcase_07 AC 125 ms
41,208 KB
testcase_08 AC 127 ms
41,136 KB
testcase_09 AC 122 ms
41,080 KB
testcase_10 AC 126 ms
41,132 KB
testcase_11 AC 126 ms
41,208 KB
testcase_12 WA -
testcase_13 AC 124 ms
41,564 KB
testcase_14 AC 120 ms
41,376 KB
testcase_15 AC 125 ms
41,588 KB
testcase_16 AC 123 ms
41,312 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.charAt(0) != '0' && 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