結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー htensaihtensai
提出日時 2019-12-19 13:46:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 37,164 KB
最終ジャッジ日時 2024-07-07 01:08:50
合計ジャッジ時間 3,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,872 KB
testcase_01 AC 53 ms
37,040 KB
testcase_02 AC 52 ms
36,428 KB
testcase_03 AC 52 ms
36,828 KB
testcase_04 AC 52 ms
37,056 KB
testcase_05 AC 52 ms
36,672 KB
testcase_06 AC 53 ms
36,888 KB
testcase_07 AC 51 ms
37,164 KB
testcase_08 AC 51 ms
36,904 KB
testcase_09 AC 52 ms
36,892 KB
testcase_10 AC 52 ms
36,952 KB
testcase_11 AC 51 ms
36,776 KB
testcase_12 AC 53 ms
36,684 KB
testcase_13 AC 54 ms
37,116 KB
testcase_14 AC 54 ms
37,056 KB
testcase_15 AC 54 ms
36,432 KB
testcase_16 AC 55 ms
36,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        try {
            for (int i = 0; i < 2; i++) {
                String a = br.readLine();
                int x = Integer.parseInt(a);
                if (!a.equals(String.valueOf(x)) || x > 12345) {
                    throw new Exception();
                }
            }
            System.out.println("OK");
        } catch(Exception e) {
            System.out.println("NG");
        }
    }
}
0