結果

問題 No.1672 404 Not Found
ユーザー マサマサ
提出日時 2021-12-28 15:23:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 302 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-10-02 07:55:25
合計ジャッジ時間 4,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,972 KB
testcase_01 AC 128 ms
54,064 KB
testcase_02 AC 126 ms
54,028 KB
testcase_03 AC 127 ms
53,892 KB
testcase_04 AC 128 ms
53,808 KB
testcase_05 AC 129 ms
53,892 KB
testcase_06 AC 133 ms
53,996 KB
testcase_07 AC 116 ms
52,676 KB
testcase_08 AC 130 ms
53,832 KB
testcase_09 AC 130 ms
53,892 KB
testcase_10 AC 128 ms
54,044 KB
testcase_11 AC 131 ms
53,868 KB
testcase_12 AC 131 ms
54,220 KB
testcase_13 AC 128 ms
54,072 KB
testcase_14 AC 136 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

      if((s / 100 == 4) || (s / 100 == 5)) {
        System.out.println("Yes");
      }else {
        System.out.println("No");
      }
    }
}
0