結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー kenji_shioyakenji_shioya
提出日時 2017-01-07 14:56:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 4,025 ms
コンパイル使用メモリ 75,288 KB
実行使用メモリ 41,800 KB
最終ジャッジ日時 2024-05-09 22:01:47
合計ジャッジ時間 6,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,096 KB
testcase_01 AC 134 ms
41,556 KB
testcase_02 AC 128 ms
41,260 KB
testcase_03 AC 132 ms
41,444 KB
testcase_04 AC 126 ms
41,088 KB
testcase_05 AC 129 ms
41,520 KB
testcase_06 AC 128 ms
41,600 KB
testcase_07 AC 136 ms
41,800 KB
testcase_08 AC 138 ms
41,164 KB
testcase_09 AC 133 ms
41,408 KB
testcase_10 AC 135 ms
41,380 KB
testcase_11 AC 136 ms
41,248 KB
testcase_12 AC 139 ms
40,928 KB
testcase_13 AC 134 ms
41,164 KB
testcase_14 AC 133 ms
41,572 KB
testcase_15 AC 136 ms
41,084 KB
testcase_16 AC 133 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.NumberFormatException;

public class Rain {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);

    String[] array = new String[2];
    array[0] = sc.next();
    array[1] = sc.next();

    try {
      for (String x : array) {
        if (x.startsWith("0") && x.length() > 1) {
           throw new NumberFormatException();
        }
        int y = Integer.parseInt(x);
        if (y > 12345){
          throw new NumberFormatException();
        }
      }
    } catch(NumberFormatException e) {
      System.out.println("NG");
      return;
    }
      System.out.println("OK");
  }
}
0