結果

問題 No.558 575検出するやつ
ユーザー cande398cande398
提出日時 2017-10-07 02:02:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-04-28 11:57:54
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
54,116 KB
testcase_01 AC 107 ms
53,772 KB
testcase_02 AC 108 ms
54,136 KB
testcase_03 AC 98 ms
52,812 KB
testcase_04 AC 112 ms
54,092 KB
testcase_05 AC 131 ms
53,980 KB
testcase_06 AC 108 ms
53,904 KB
testcase_07 AC 100 ms
53,016 KB
testcase_08 AC 100 ms
53,056 KB
testcase_09 AC 110 ms
53,572 KB
testcase_10 AC 108 ms
54,084 KB
testcase_11 AC 105 ms
54,080 KB
testcase_12 AC 96 ms
53,024 KB
testcase_13 AC 108 ms
53,984 KB
testcase_14 AC 103 ms
53,272 KB
testcase_15 AC 113 ms
53,888 KB
testcase_16 AC 113 ms
54,152 KB
testcase_17 AC 103 ms
53,404 KB
testcase_18 AC 108 ms
54,208 KB
testcase_19 AC 109 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main{
  public static void main(String[] args){
    String line = new java.util.Scanner(System.in).next();
    if(line.indexOf("575") == -1)System.out.println("NO");
    else System.out.println("YES");
  }
}
0