結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,004 KB
testcase_01 AC 126 ms
41,100 KB
testcase_02 AC 128 ms
41,192 KB
testcase_03 AC 125 ms
39,844 KB
testcase_04 AC 133 ms
41,108 KB
testcase_05 AC 127 ms
41,232 KB
testcase_06 AC 131 ms
41,236 KB
testcase_07 AC 131 ms
41,404 KB
testcase_08 AC 118 ms
39,952 KB
testcase_09 AC 133 ms
41,124 KB
testcase_10 AC 133 ms
41,020 KB
testcase_11 AC 136 ms
41,156 KB
testcase_12 AC 133 ms
41,256 KB
testcase_13 AC 134 ms
41,116 KB
testcase_14 AC 116 ms
40,020 KB
testcase_15 AC 134 ms
41,236 KB
testcase_16 AC 132 ms
41,248 KB
testcase_17 AC 127 ms
40,828 KB
testcase_18 AC 131 ms
41,360 KB
testcase_19 AC 131 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

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