結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー kenji_shioyakenji_shioya
提出日時 2017-01-07 14:52:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 3,580 ms
コンパイル使用メモリ 75,340 KB
実行使用メモリ 56,196 KB
最終ジャッジ日時 2024-05-09 22:01:33
合計ジャッジ時間 5,954 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
39,336 KB
testcase_01 AC 103 ms
40,740 KB
testcase_02 AC 106 ms
40,632 KB
testcase_03 AC 101 ms
40,708 KB
testcase_04 AC 93 ms
40,120 KB
testcase_05 AC 93 ms
40,056 KB
testcase_06 WA -
testcase_07 AC 101 ms
40,780 KB
testcase_08 WA -
testcase_09 AC 96 ms
40,824 KB
testcase_10 AC 98 ms
40,108 KB
testcase_11 AC 115 ms
41,000 KB
testcase_12 AC 101 ms
40,900 KB
testcase_13 AC 112 ms
40,900 KB
testcase_14 AC 90 ms
39,556 KB
testcase_15 AC 101 ms
40,716 KB
testcase_16 AC 102 ms
40,844 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();
        }
        Integer.parseInt(x);
      }
    } catch(NumberFormatException e) {
      System.out.println("NG");
      return;
    }
      System.out.println("OK");
  }
}
0