結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-21 10:01:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-10-02 08:57:39
合計ジャッジ時間 5,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,992 KB
testcase_01 AC 131 ms
41,060 KB
testcase_02 AC 133 ms
41,424 KB
testcase_03 AC 131 ms
41,020 KB
testcase_04 AC 109 ms
40,220 KB
testcase_05 AC 125 ms
41,284 KB
testcase_06 AC 129 ms
40,636 KB
testcase_07 AC 129 ms
41,264 KB
testcase_08 AC 115 ms
39,760 KB
testcase_09 AC 130 ms
41,140 KB
testcase_10 AC 133 ms
41,056 KB
testcase_11 AC 128 ms
40,872 KB
testcase_12 AC 127 ms
40,972 KB
testcase_13 AC 117 ms
39,996 KB
testcase_14 AC 131 ms
41,300 KB
testcase_15 AC 130 ms
41,080 KB
testcase_16 AC 114 ms
39,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String a = sc.next();
    String b = sc.next();
    String ans = "OK";
    if((a.charAt(0) == '0') && (a.length() > 1)) ans = "NG";
    if((b.charAt(0) == '0') && (b.length() > 1)) ans = "NG";
    try {
      int A = Integer.parseInt(a);
      int B = Integer.parseInt(b);
      if((A < 0) || (A > 12345)) ans = "NG";
      if((B < 0) || (B > 12345)) ans = "NG";
    } catch(NumberFormatException e) {
      ans = "NG";
    }
    System.out.println(ans);
  }
}
0