結果

問題 No.1672 404 Not Found
ユーザー merlinmerlin
提出日時 2021-09-10 21:21:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 75,208 KB
実行使用メモリ 50,588 KB
最終ジャッジ日時 2024-06-11 22:10:45
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,984 KB
testcase_01 AC 54 ms
50,368 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 53 ms
50,188 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 54 ms
50,224 KB
testcase_08 AC 54 ms
50,248 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
50,308 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

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