結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-21 09:58:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-10-02 08:57:33
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,140 KB
testcase_01 AC 127 ms
40,996 KB
testcase_02 AC 126 ms
41,112 KB
testcase_03 AC 128 ms
41,108 KB
testcase_04 AC 129 ms
40,784 KB
testcase_05 AC 129 ms
41,224 KB
testcase_06 WA -
testcase_07 AC 129 ms
41,044 KB
testcase_08 WA -
testcase_09 AC 129 ms
41,032 KB
testcase_10 AC 128 ms
41,400 KB
testcase_11 AC 128 ms
40,984 KB
testcase_12 AC 130 ms
41,152 KB
testcase_13 AC 126 ms
41,268 KB
testcase_14 AC 131 ms
41,048 KB
testcase_15 AC 131 ms
41,380 KB
testcase_16 AC 128 ms
41,040 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 {
      for(int i = 0; i < a.length(); i++) {
        int d = Integer.parseInt(String.valueOf(a.charAt(i)));
      }
      for(int i = 0; i < b.length(); i++) {
        int d = Integer.parseInt(String.valueOf(b.charAt(i)));
      }
    } catch(NumberFormatException e) {
      ans = "NG";
    }
    System.out.println(ans);
  }
}
0