結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | 37zigen |
提出日時 | 2016-11-17 17:28:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 933 bytes |
コンパイル時間 | 3,645 ms |
コンパイル使用メモリ | 77,704 KB |
実行使用メモリ | 43,020 KB |
最終ジャッジ日時 | 2024-05-04 14:52:46 |
合計ジャッジ時間 | 6,098 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
package yukicoder; import java.util.Scanner; public class Q446 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); boolean correct = true; for (int t = 0; t < 2; ++t) { String s = sc.next(); System.out.println(s); { assert s.length() >= 1 && s.length() <= 5; for (int i = 0; i < s.length(); ++i) { boolean f = false; if (0 <= s.charAt(i) - 'a' && s.charAt(i) - 'a' <= 'z' - 'a') { f = true; } if (0 <= s.charAt(i) - 'A' && s.charAt(i) - 'A' <= 'Z' - 'A') { f = true; } if (0 <= s.charAt(i) - '0' && s.charAt(i) - '0' <= 9) { f = true; } assert f; } } boolean ok = false; for (int i = 0; i <= 12345; ++i) { if (String.valueOf(i).equals(s)) { ok = true; } } correct &= ok; } if (correct) { System.out.println("OK"); } else { System.out.println("NG"); } sc.close(); } }