結果

問題 No.558 575検出するやつ
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 18:41:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 3,457 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-04-25 18:14:11
合計ジャッジ時間 6,885 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,296 KB
testcase_01 AC 126 ms
54,440 KB
testcase_02 AC 110 ms
52,880 KB
testcase_03 AC 125 ms
54,040 KB
testcase_04 AC 125 ms
53,876 KB
testcase_05 AC 126 ms
54,044 KB
testcase_06 AC 132 ms
54,164 KB
testcase_07 AC 129 ms
54,128 KB
testcase_08 AC 132 ms
54,168 KB
testcase_09 AC 131 ms
53,968 KB
testcase_10 AC 127 ms
54,196 KB
testcase_11 AC 127 ms
53,860 KB
testcase_12 AC 132 ms
54,116 KB
testcase_13 AC 132 ms
54,036 KB
testcase_14 AC 130 ms
54,228 KB
testcase_15 AC 132 ms
54,352 KB
testcase_16 AC 133 ms
53,972 KB
testcase_17 AC 126 ms
54,044 KB
testcase_18 AC 129 ms
53,848 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