結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | omuretsu2 |
提出日時 | 2017-05-24 14:58:30 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,258 bytes |
コンパイル時間 | 2,041 ms |
コンパイル使用メモリ | 78,052 KB |
実行使用メモリ | 54,280 KB |
最終ジャッジ日時 | 2024-09-19 16:07:44 |
合計ジャッジ時間 | 4,649 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 100 ms
52,964 KB |
testcase_02 | RE | - |
testcase_03 | AC | 93 ms
54,100 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 101 ms
52,892 KB |
testcase_07 | WA | - |
testcase_08 | AC | 115 ms
54,280 KB |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 108 ms
53,836 KB |
testcase_13 | AC | 112 ms
53,904 KB |
testcase_14 | AC | 109 ms
53,876 KB |
testcase_15 | AC | 101 ms
53,416 KB |
testcase_16 | AC | 99 ms
52,968 KB |
ソースコード
import java.util.*; import java.util.regex.Pattern; import java.util.regex.Matcher; class Sample { public static void main(String[] args){ // スキャナーを定義 Scanner scanner = new Scanner(System.in); // 入力値を文字列として取得 String numberAStr = scanner.next(); String numberBStr = scanner.next(); // 正規表現を定義 Pattern pattern = Pattern.compile("^[0-9a-zA-Z]*$"); Matcher matcherA = pattern.matcher(numberAStr); Matcher matcherB = pattern.matcher(numberBStr); // 条件分岐 if(!matcherA.matches() || !matcherB.matches()){ System.out.println("NG"); } else if (!matcherA.matches() && !matcherB.matches()) { System.out.println("NG"); } else { if(numberAStr.indexOf("0")==1 || numberBStr.indexOf("0")==1){ System.out.println("NG"); } else if(numberAStr.indexOf("0")==1 && numberBStr.indexOf("0")==1){ System.out.println("NG"); } else { int numberAInt = Integer.parseInt(numberAStr); int numberBInt = Integer.parseInt(numberBStr); if(numberAInt > 12345 || numberBInt > 12345){ System.out.println("NG"); } else if (numberAInt > 12345 && numberBInt > 12345) { System.out.println("NG"); } else { System.out.println("OK"); } } } } }