結果
| 問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
| コンテスト | |
| ユーザー |
kenji_shioya
|
| 提出日時 | 2017-01-07 14:52:10 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 568 bytes |
| コンパイル時間 | 3,639 ms |
| コンパイル使用メモリ | 75,068 KB |
| 実行使用メモリ | 54,244 KB |
| 最終ジャッジ日時 | 2024-12-17 16:11:10 |
| 合計ジャッジ時間 | 6,482 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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