結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-05-04 11:57:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,296 bytes |
コンパイル時間 | 2,106 ms |
コンパイル使用メモリ | 76,292 KB |
実行使用メモリ | 37,156 KB |
最終ジャッジ日時 | 2024-09-14 07:00:05 |
合計ジャッジ時間 | 3,836 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
36,832 KB |
testcase_01 | AC | 51 ms
37,136 KB |
testcase_02 | AC | 51 ms
37,028 KB |
testcase_03 | AC | 50 ms
37,028 KB |
testcase_04 | AC | 52 ms
37,072 KB |
testcase_05 | AC | 51 ms
36,848 KB |
testcase_06 | AC | 50 ms
37,156 KB |
testcase_07 | AC | 50 ms
37,148 KB |
testcase_08 | AC | 51 ms
37,088 KB |
testcase_09 | WA | - |
testcase_10 | AC | 51 ms
36,924 KB |
testcase_11 | AC | 51 ms
36,696 KB |
testcase_12 | AC | 50 ms
36,896 KB |
testcase_13 | AC | 50 ms
37,140 KB |
testcase_14 | AC | 50 ms
36,908 KB |
testcase_15 | AC | 50 ms
37,152 KB |
testcase_16 | AC | 53 ms
37,004 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String A = reader.readLine(); String B = reader.readLine(); if (validate(A) && validate(B)) { System.out.println("OK"); } else { System.out.println("NG"); } } private static boolean validate(String s) { boolean isNumber = true; if (s.length() >= 2 && s.charAt(0) == '0' && s.charAt(1) == '0') { isNumber = false; } else { for (int i = 0; i < s.length(); i++) { if (!Character.isDigit(s.charAt(i))) { isNumber = false; break; } } } int upperBound = 12345; int lowerBound = 0; if (isNumber) { int number = Integer.parseInt(s); if (lowerBound <= number && number <= upperBound) { return true; } else { return false; } } else { return false; } } }