結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,232 KB
testcase_01 AC 131 ms
41,312 KB
testcase_02 AC 133 ms
41,088 KB
testcase_03 AC 130 ms
41,136 KB
testcase_04 AC 128 ms
41,748 KB
testcase_05 AC 130 ms
41,664 KB
testcase_06 AC 130 ms
41,592 KB
testcase_07 WA -
testcase_08 AC 130 ms
41,264 KB
testcase_09 WA -
testcase_10 AC 132 ms
41,424 KB
testcase_11 AC 131 ms
41,652 KB
testcase_12 AC 130 ms
40,912 KB
testcase_13 AC 134 ms
41,220 KB
testcase_14 AC 130 ms
41,048 KB
testcase_15 AC 131 ms
41,184 KB
testcase_16 AC 130 ms
40,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.Scanner;
public class No446{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String A=sc.nextLine();
		String B=sc.nextLine();
		try{
			int a=Integer.parseInt(A);
			int b=Integer.parseInt(B);
			if(check(a)==1&&check(b)==1){
				out.println("OK");
			}else{
				out.println("NG");
			}
		}catch(Exception e){
			out.println("NG");
		}
	}
	private static int check(int i){
		if(0<=i&&i<=12345){return 1;}
		else{return 0;}
	}
}
0