結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー fal_rndfal_rnd
提出日時 2016-11-18 22:44:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-11-26 07:27:45
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,448 KB
testcase_01 AC 103 ms
40,108 KB
testcase_02 AC 109 ms
40,848 KB
testcase_03 AC 96 ms
40,232 KB
testcase_04 AC 107 ms
39,832 KB
testcase_05 AC 113 ms
40,988 KB
testcase_06 AC 114 ms
41,540 KB
testcase_07 AC 113 ms
40,928 KB
testcase_08 AC 110 ms
40,700 KB
testcase_09 AC 101 ms
40,108 KB
testcase_10 AC 113 ms
41,052 KB
testcase_11 AC 108 ms
40,640 KB
testcase_12 AC 100 ms
39,816 KB
testcase_13 AC 102 ms
39,800 KB
testcase_14 AC 104 ms
40,268 KB
testcase_15 AC 101 ms
39,948 KB
testcase_16 AC 101 ms
40,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args){
		if(check(s.next())&&check(s.next())) {
			System.out.println("OK");
		}else {
			System.out.println("NG");
		}
	}
	static boolean check(String s) {
		if(s.equals("0")||s.matches("[1-9][0-9]*")) {
			return Integer.parseInt(s)<=12345;
		}
		return false;
	}
}
0