結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,188 KB
testcase_01 AC 100 ms
41,320 KB
testcase_02 AC 112 ms
40,672 KB
testcase_03 AC 112 ms
41,060 KB
testcase_04 AC 109 ms
41,028 KB
testcase_05 AC 107 ms
40,040 KB
testcase_06 AC 107 ms
40,912 KB
testcase_07 WA -
testcase_08 AC 107 ms
41,140 KB
testcase_09 WA -
testcase_10 AC 104 ms
41,188 KB
testcase_11 AC 116 ms
41,356 KB
testcase_12 AC 100 ms
41,112 KB
testcase_13 AC 112 ms
40,984 KB
testcase_14 AC 100 ms
40,844 KB
testcase_15 AC 107 ms
41,456 KB
testcase_16 AC 107 ms
41,280 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()) {
        	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