結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー samplelpmassamplelpmas
提出日時 2017-01-18 12:37:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 42,612 KB
最終ジャッジ日時 2024-06-02 06:40:24
合計ジャッジ時間 4,696 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,904 KB
testcase_01 AC 123 ms
42,192 KB
testcase_02 AC 124 ms
42,092 KB
testcase_03 AC 127 ms
42,036 KB
testcase_04 AC 127 ms
42,012 KB
testcase_05 AC 127 ms
42,052 KB
testcase_06 AC 125 ms
42,068 KB
testcase_07 AC 124 ms
42,160 KB
testcase_08 AC 129 ms
41,780 KB
testcase_09 AC 124 ms
42,140 KB
testcase_10 AC 123 ms
42,100 KB
testcase_11 AC 124 ms
41,880 KB
testcase_12 AC 126 ms
42,168 KB
testcase_13 AC 128 ms
41,852 KB
testcase_14 AC 127 ms
41,932 KB
testcase_15 AC 127 ms
42,472 KB
testcase_16 AC 130 ms
42,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String A = sc.next();
        String B = sc.next();

        boolean isOkA = false;
        boolean isOkB = false;

        for (int i = 0; i <= 12345; i++) {

            if (A.equals(String.valueOf(i))) {
                isOkA = true;
            }

            if (B.equals(String.valueOf(i))) {
                isOkB = true;
            }

        }

        if (isOkA && isOkB) {
            System.out.println("OK");
        } else {
            System.out.println("NG");
        }

    }

}
0