結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー 37zigen37zigen
提出日時 2016-11-17 13:57:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 2,756 ms
コンパイル使用メモリ 79,288 KB
実行使用メモリ 42,484 KB
最終ジャッジ日時 2024-05-04 14:43:02
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
42,132 KB
testcase_01 AC 119 ms
41,868 KB
testcase_02 AC 113 ms
42,168 KB
testcase_03 AC 117 ms
42,484 KB
testcase_04 AC 124 ms
42,268 KB
testcase_05 AC 119 ms
42,312 KB
testcase_06 AC 123 ms
42,476 KB
testcase_07 AC 109 ms
41,936 KB
testcase_08 AC 124 ms
42,376 KB
testcase_09 AC 122 ms
41,852 KB
testcase_10 AC 122 ms
42,156 KB
testcase_11 AC 120 ms
41,960 KB
testcase_12 AC 127 ms
42,276 KB
testcase_13 AC 117 ms
42,084 KB
testcase_14 AC 120 ms
41,664 KB
testcase_15 AC 124 ms
41,696 KB
testcase_16 AC 124 ms
42,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Q446 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		boolean correct = true;
		for (int t = 0; t < 2; ++t) {
			String s = sc.next();
			boolean ok = false;
			for (int i = 0; i <= 12345; ++i) {
				if (String.valueOf(i).equals(s)) {
					ok = true;
				}
			}
			correct &= ok;
		}

		if (correct) {
			System.out.println("OK");
		} else {
			System.out.println("NG");
		}

		sc.close();

	}
}
0