結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,620 KB
testcase_01 AC 115 ms
53,864 KB
testcase_02 AC 114 ms
54,232 KB
testcase_03 AC 115 ms
53,748 KB
testcase_04 AC 117 ms
54,112 KB
testcase_05 AC 120 ms
54,080 KB
testcase_06 AC 96 ms
52,372 KB
testcase_07 AC 116 ms
53,952 KB
testcase_08 AC 121 ms
53,948 KB
testcase_09 AC 118 ms
53,816 KB
testcase_10 AC 120 ms
53,880 KB
testcase_11 AC 117 ms
53,884 KB
testcase_12 AC 119 ms
53,944 KB
testcase_13 AC 116 ms
53,848 KB
testcase_14 AC 104 ms
52,936 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