結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー YamaKasaYamaKasa
提出日時 2018-05-24 23:43:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-28 17:35:00
合計ジャッジ時間 4,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,396 KB
testcase_01 AC 100 ms
41,356 KB
testcase_02 AC 115 ms
41,556 KB
testcase_03 AC 113 ms
41,392 KB
testcase_04 AC 114 ms
41,228 KB
testcase_05 AC 111 ms
40,184 KB
testcase_06 AC 114 ms
41,356 KB
testcase_07 AC 113 ms
41,112 KB
testcase_08 AC 111 ms
41,628 KB
testcase_09 AC 99 ms
41,424 KB
testcase_10 AC 113 ms
40,320 KB
testcase_11 AC 113 ms
41,332 KB
testcase_12 AC 110 ms
41,504 KB
testcase_13 AC 112 ms
41,432 KB
testcase_14 AC 114 ms
41,560 KB
testcase_15 AC 113 ms
41,784 KB
testcase_16 AC 104 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String A = scan.next();
		String B = scan.next();
		scan.close();
		if(isNumber(A) && isNumber(B)) {
			int a = Integer.parseInt(A);
			int b = Integer.parseInt(B);
			System.out.println("OK");
		}else {
			System.out.println("NG");
		}
	}
	public static boolean isNumber(String num) {
	    try {
	    	if(num.length() > 1 && num.substring(0, 1).equals("0")) {
	        	return false;
	    	}
	        int t = Integer.parseInt(num);
	        if(t > 12345) {
	        	return false;
	        }
	        return true;
	        } catch (NumberFormatException e) {
	        return false;
	    }
	}
}
0