結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー 37zigen37zigen
提出日時 2016-11-17 17:28:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 2,958 ms
コンパイル使用メモリ 78,272 KB
実行使用メモリ 43,072 KB
最終ジャッジ日時 2024-05-04 14:53:06
合計ジャッジ時間 5,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
42,608 KB
testcase_01 AC 123 ms
42,552 KB
testcase_02 AC 127 ms
42,416 KB
testcase_03 AC 141 ms
42,344 KB
testcase_04 AC 139 ms
42,440 KB
testcase_05 AC 133 ms
42,376 KB
testcase_06 AC 115 ms
42,540 KB
testcase_07 AC 121 ms
42,376 KB
testcase_08 AC 127 ms
42,308 KB
testcase_09 AC 115 ms
42,608 KB
testcase_10 AC 133 ms
42,544 KB
testcase_11 AC 126 ms
42,320 KB
testcase_12 AC 123 ms
42,504 KB
testcase_13 AC 128 ms
42,640 KB
testcase_14 AC 123 ms
42,360 KB
testcase_15 AC 128 ms
43,072 KB
testcase_16 AC 122 ms
42,312 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();
			{
				assert s.length() >= 1 && s.length() <= 5;
				for (int i = 0; i < s.length(); ++i) {
					boolean f = false;
					if (0 <= s.charAt(i) - 'a' && s.charAt(i) - 'a' <= 'z' - 'a') {
						f = true;
					}
					if (0 <= s.charAt(i) - 'A' && s.charAt(i) - 'A' <= 'Z' - 'A') {
						f = true;
					}
					if (0 <= s.charAt(i) - '0' && s.charAt(i) - '0' <= 9) {
						f = true;
					}
					assert f;
				}

			}
			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