結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 01:22:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 4,550 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-11-06 21:19:35
合計ジャッジ時間 5,970 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
54,316 KB
testcase_01 AC 134 ms
54,048 KB
testcase_02 AC 148 ms
54,476 KB
testcase_03 AC 151 ms
53,936 KB
testcase_04 AC 151 ms
53,960 KB
testcase_05 AC 147 ms
53,748 KB
testcase_06 AC 148 ms
54,152 KB
testcase_07 AC 135 ms
54,260 KB
testcase_08 AC 149 ms
53,968 KB
testcase_09 AC 135 ms
53,912 KB
testcase_10 AC 150 ms
54,004 KB
testcase_11 AC 134 ms
54,100 KB
testcase_12 AC 146 ms
53,868 KB
testcase_13 AC 150 ms
53,908 KB
testcase_14 AC 152 ms
54,248 KB
testcase_15 AC 149 ms
54,044 KB
testcase_16 AC 148 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String a = sc.next();
		String b = sc.next();
		if (judge(a)==true && judge(b)==true) {System.out.println("OK");}
		else {System.out.println("NG");}
	}
	static boolean judge (String s) {
		boolean b = false;
		for (int i=0; i<=12345; i++) {
			if (s.equals(String.valueOf(i))) {b = true;}
		}
		return b;
	}
}
0