結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー kenji_shioya
提出日時 2017-01-07 14:56:39
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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