結果

問題 No.558 575検出するやつ
ユーザー cande398cande398
提出日時 2017-10-07 02:02:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 2,874 ms
コンパイル使用メモリ 75,004 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-11-17 03:17:12
合計ジャッジ時間 5,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,980 KB
testcase_01 AC 128 ms
41,136 KB
testcase_02 AC 128 ms
41,312 KB
testcase_03 AC 128 ms
40,928 KB
testcase_04 AC 113 ms
39,884 KB
testcase_05 AC 130 ms
40,928 KB
testcase_06 AC 127 ms
40,956 KB
testcase_07 AC 128 ms
41,060 KB
testcase_08 AC 130 ms
41,260 KB
testcase_09 AC 132 ms
41,320 KB
testcase_10 AC 127 ms
40,776 KB
testcase_11 AC 135 ms
41,264 KB
testcase_12 AC 127 ms
41,280 KB
testcase_13 AC 129 ms
41,116 KB
testcase_14 AC 127 ms
41,260 KB
testcase_15 AC 128 ms
41,348 KB
testcase_16 AC 128 ms
40,972 KB
testcase_17 AC 129 ms
41,136 KB
testcase_18 AC 128 ms
41,092 KB
testcase_19 AC 127 ms
40,968 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