結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー kenji_shioyakenji_shioya
提出日時 2017-01-07 14:56:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 4,110 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 54,872 KB
最終ジャッジ日時 2024-12-17 16:11:24
合計ジャッジ時間 5,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,164 KB
testcase_01 AC 113 ms
53,988 KB
testcase_02 AC 114 ms
53,872 KB
testcase_03 AC 103 ms
53,028 KB
testcase_04 AC 121 ms
54,080 KB
testcase_05 AC 101 ms
52,832 KB
testcase_06 AC 113 ms
54,076 KB
testcase_07 AC 111 ms
54,116 KB
testcase_08 AC 114 ms
54,256 KB
testcase_09 AC 102 ms
52,952 KB
testcase_10 AC 112 ms
53,720 KB
testcase_11 AC 111 ms
53,836 KB
testcase_12 AC 115 ms
54,872 KB
testcase_13 AC 108 ms
53,944 KB
testcase_14 AC 112 ms
54,152 KB
testcase_15 AC 102 ms
52,836 KB
testcase_16 AC 117 ms
54,144 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