結果

問題 No.558 575検出するやつ
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 18:41:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 3,480 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-11-08 05:40:34
合計ジャッジ時間 7,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,996 KB
testcase_01 AC 126 ms
41,016 KB
testcase_02 AC 127 ms
41,460 KB
testcase_03 AC 128 ms
41,216 KB
testcase_04 AC 130 ms
41,120 KB
testcase_05 AC 132 ms
40,944 KB
testcase_06 AC 129 ms
41,020 KB
testcase_07 AC 134 ms
41,312 KB
testcase_08 AC 132 ms
41,200 KB
testcase_09 AC 133 ms
41,216 KB
testcase_10 AC 131 ms
41,196 KB
testcase_11 AC 135 ms
41,012 KB
testcase_12 AC 133 ms
41,268 KB
testcase_13 AC 132 ms
41,108 KB
testcase_14 AC 129 ms
41,088 KB
testcase_15 AC 130 ms
41,224 KB
testcase_16 AC 132 ms
41,124 KB
testcase_17 AC 128 ms
40,984 KB
testcase_18 AC 133 ms
41,120 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class No558 {
    public static void main(String[] args) {
        String str = new Scanner(System.in).next();

        Pattern p = Pattern.compile(".+575.+");
        Matcher m =  p.matcher(str);

        System.out.println(m.find() ? "YES" : "NO");
    }
}
0