結果

問題 No.1672 404 Not Found
ユーザー Subaru314Subaru314
提出日時 2022-01-05 17:50:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 304 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-11-06 04:09:58
合計ジャッジ時間 5,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,124 KB
testcase_01 AC 126 ms
54,364 KB
testcase_02 AC 125 ms
53,880 KB
testcase_03 AC 127 ms
54,260 KB
testcase_04 AC 124 ms
54,164 KB
testcase_05 AC 127 ms
54,156 KB
testcase_06 AC 124 ms
54,228 KB
testcase_07 AC 127 ms
53,988 KB
testcase_08 AC 125 ms
54,072 KB
testcase_09 AC 124 ms
53,988 KB
testcase_10 AC 125 ms
53,968 KB
testcase_11 AC 122 ms
53,848 KB
testcase_12 AC 127 ms
53,948 KB
testcase_13 AC 128 ms
54,240 KB
testcase_14 AC 127 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  
  public static void main(String[] args){
    
    Scanner sc = new Scanner(System.in);
    
    String s = sc.next();
    
    if(s.charAt(0)=='4' || s.charAt(0)=='5'){
      System.out.println("Yes");
    }else{
      System.out.println("No");
    }
  
  }

}
0