結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-03-08 22:41:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-23 19:38:50
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,516 KB
testcase_01 AC 139 ms
54,152 KB
testcase_02 AC 133 ms
54,016 KB
testcase_03 AC 141 ms
54,220 KB
testcase_04 AC 143 ms
53,764 KB
testcase_05 AC 139 ms
53,944 KB
testcase_06 AC 134 ms
54,176 KB
testcase_07 AC 140 ms
54,284 KB
testcase_08 AC 136 ms
54,056 KB
testcase_09 AC 134 ms
54,100 KB
testcase_10 AC 139 ms
54,148 KB
testcase_11 AC 141 ms
53,608 KB
testcase_12 AC 135 ms
54,136 KB
testcase_13 AC 132 ms
54,112 KB
testcase_14 AC 126 ms
54,288 KB
testcase_15 AC 137 ms
54,060 KB
testcase_16 AC 133 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

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

        String a = in.next();
        String b = in.next();

        boolean isA = false;
        boolean isB = false;

        for(int i=0; i<=12345; i++) {
            String str = String.valueOf(i);
            if(a.equals(str)) isA = true;
            if(b.equals(str)) isB = true;
        }

        if(isA && isB) System.out.println("OK");
        else System.out.println("NG");

        in.close();
    }
}
0