結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー あsdfあsdf
提出日時 2017-04-17 21:05:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 579 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-07-19 05:37:49
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,052 KB
testcase_01 AC 113 ms
41,168 KB
testcase_02 AC 110 ms
40,980 KB
testcase_03 AC 101 ms
40,056 KB
testcase_04 AC 118 ms
41,052 KB
testcase_05 AC 123 ms
41,476 KB
testcase_06 AC 112 ms
41,088 KB
testcase_07 WA -
testcase_08 AC 94 ms
39,852 KB
testcase_09 WA -
testcase_10 AC 95 ms
39,696 KB
testcase_11 AC 110 ms
41,532 KB
testcase_12 AC 100 ms
40,140 KB
testcase_13 AC 98 ms
40,124 KB
testcase_14 AC 117 ms
41,124 KB
testcase_15 AC 102 ms
40,232 KB
testcase_16 AC 113 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

    try {
      int a = Integer.parseInt(cs0);
      int b = Integer.parseInt(cs1);
      if (a <= 12345 && b <= 12345 && a >= 0 && b >= 0 &&  Integer.toString(a).length() <= 5 && Integer.toString(b).length() <= 5) {
        System.out.println("OK");
      }else{
        System.out.println("NG");
      }
    } catch (NumberFormatException e) {
      System.out.println("NG");
    }

  }
}
0