結果

問題 No.1672 404 Not Found
ユーザー merlinmerlin
提出日時 2021-09-10 21:22:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 72,380 KB
実行使用メモリ 49,508 KB
最終ジャッジ日時 2023-09-02 15:40:51
合計ジャッジ時間 3,577 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,300 KB
testcase_01 AC 45 ms
49,192 KB
testcase_02 AC 44 ms
49,188 KB
testcase_03 AC 45 ms
49,308 KB
testcase_04 AC 46 ms
49,252 KB
testcase_05 AC 44 ms
49,068 KB
testcase_06 AC 44 ms
49,508 KB
testcase_07 AC 44 ms
49,108 KB
testcase_08 AC 44 ms
49,248 KB
testcase_09 AC 47 ms
49,292 KB
testcase_10 AC 44 ms
49,108 KB
testcase_11 AC 45 ms
49,296 KB
testcase_12 AC 44 ms
49,408 KB
testcase_13 AC 44 ms
47,192 KB
testcase_14 AC 44 ms
49,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        if(n/100==4 || n/100==5) sb.append("Yes\n");
        else sb.append("No\n");
        System.out.print(sb);
    }
}
0