結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー yokoshabelyokoshabel
提出日時 2016-12-30 22:52:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 3,446 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-05-09 14:25:15
合計ジャッジ時間 6,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,556 KB
testcase_01 AC 129 ms
41,512 KB
testcase_02 AC 128 ms
41,512 KB
testcase_03 AC 129 ms
41,288 KB
testcase_04 AC 128 ms
41,312 KB
testcase_05 AC 127 ms
41,360 KB
testcase_06 AC 128 ms
41,316 KB
testcase_07 WA -
testcase_08 AC 128 ms
41,728 KB
testcase_09 WA -
testcase_10 AC 129 ms
41,676 KB
testcase_11 AC 128 ms
41,304 KB
testcase_12 AC 128 ms
41,300 KB
testcase_13 AC 130 ms
41,500 KB
testcase_14 AC 131 ms
41,544 KB
testcase_15 AC 129 ms
41,676 KB
testcase_16 AC 129 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.String;
public class No446{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String a=sc.nextLine();
		String b=sc.nextLine();
		if(check(a)==true&&check(b)==true){
			System.out.println("OK");
		}else{
			System.out.println("NG");
		}
	}
	
	private static boolean check(String S){
		if(S.length()<0||S.length()>5){return false;}
		if(S.matches("^[0-9]+$")==false){return false;}
		int n=Integer.parseInt(S);
		if(n<0||12345<n){return false;}
		return true;
	}
	
}
0