結果

問題 No.558 575検出するやつ
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 18:42:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 3,323 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-04-25 18:14:21
合計ジャッジ時間 6,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,136 KB
testcase_01 AC 118 ms
54,148 KB
testcase_02 AC 112 ms
54,312 KB
testcase_03 AC 115 ms
54,108 KB
testcase_04 AC 116 ms
54,020 KB
testcase_05 AC 104 ms
52,732 KB
testcase_06 AC 115 ms
54,244 KB
testcase_07 AC 114 ms
54,160 KB
testcase_08 AC 101 ms
53,032 KB
testcase_09 AC 108 ms
53,776 KB
testcase_10 AC 115 ms
54,080 KB
testcase_11 AC 105 ms
52,980 KB
testcase_12 AC 97 ms
53,012 KB
testcase_13 AC 111 ms
53,876 KB
testcase_14 AC 97 ms
52,504 KB
testcase_15 AC 112 ms
54,172 KB
testcase_16 AC 117 ms
54,268 KB
testcase_17 AC 116 ms
54,400 KB
testcase_18 AC 94 ms
52,668 KB
testcase_19 AC 111 ms
54,136 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