結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,312 KB
testcase_01 AC 108 ms
40,240 KB
testcase_02 AC 91 ms
39,888 KB
testcase_03 WA -
testcase_04 AC 94 ms
40,024 KB
testcase_05 AC 104 ms
40,720 KB
testcase_06 AC 104 ms
41,020 KB
testcase_07 WA -
testcase_08 AC 108 ms
41,008 KB
testcase_09 AC 95 ms
39,448 KB
testcase_10 AC 106 ms
41,168 KB
testcase_11 AC 98 ms
40,224 KB
testcase_12 AC 105 ms
40,856 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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