結果
| 問題 | No.446 ゆきこーだーの雨と雪 (1) |
| コンテスト | |
| ユーザー |
kenji_shioya
|
| 提出日時 | 2017-01-07 14:52:10 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 568 bytes |
| 記録 | |
| コンパイル時間 | 2,337 ms |
| コンパイル使用メモリ | 82,924 KB |
| 実行使用メモリ | 44,220 KB |
| 最終ジャッジ日時 | 2026-05-26 20:04:37 |
| 合計ジャッジ時間 | 4,396 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 11 WA * 2 |
ソースコード
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");
}
}
kenji_shioya