結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-11 01:17:53 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 2,482 ms |
コンパイル使用メモリ | 74,744 KB |
実行使用メモリ | 41,484 KB |
最終ジャッジ日時 | 2024-11-06 20:56:06 |
合計ジャッジ時間 | 5,316 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 125 ms
40,864 KB |
testcase_02 | RE | - |
testcase_03 | AC | 123 ms
41,444 KB |
testcase_04 | RE | - |
testcase_05 | AC | 128 ms
40,908 KB |
testcase_06 | AC | 124 ms
41,320 KB |
testcase_07 | AC | 126 ms
41,032 KB |
testcase_08 | AC | 127 ms
40,996 KB |
testcase_09 | AC | 112 ms
39,888 KB |
testcase_10 | AC | 123 ms
41,108 KB |
testcase_11 | AC | 129 ms
41,484 KB |
testcase_12 | AC | 129 ms
41,120 KB |
testcase_13 | AC | 111 ms
39,756 KB |
testcase_14 | AC | 124 ms
41,148 KB |
testcase_15 | AC | 123 ms
41,216 KB |
testcase_16 | AC | 124 ms
41,280 KB |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String a = sc.next(); String b = sc.next(); boolean ba = judge(a); boolean bb = judge(b); if (ba==true && bb==true) {System.out.println("OK");} else {System.out.println("NG");} } static boolean judge (String s) { boolean b; //1、文字列を含んでいる場合を除去する if (s.matches("^[a-zA-Z]*")) {return false;} else { //2、余計な0が含まれている(intにしたときに長さが変わる)場合を除去する int before_leng = s.length(); int after_leng = String.valueOf(Integer.parseInt(s)).length(); if (before_leng != after_leng) {return false;} //3、数値の範囲を逸脱している場合を除去する if (Integer.parseInt(s) > 12345) {return false;} } //4、何事もなく通過した場合はtrueを返す return true; } }