結果

問題 No.558 575検出するやつ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-06 23:45:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-06-28 02:14:30
合計ジャッジ時間 5,280 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,136 KB
testcase_01 AC 126 ms
41,164 KB
testcase_02 AC 125 ms
41,324 KB
testcase_03 AC 125 ms
41,040 KB
testcase_04 AC 123 ms
41,040 KB
testcase_05 AC 119 ms
41,312 KB
testcase_06 AC 121 ms
41,120 KB
testcase_07 AC 112 ms
40,188 KB
testcase_08 AC 123 ms
40,888 KB
testcase_09 AC 110 ms
39,836 KB
testcase_10 AC 124 ms
41,076 KB
testcase_11 AC 110 ms
39,852 KB
testcase_12 AC 108 ms
39,860 KB
testcase_13 AC 111 ms
40,100 KB
testcase_14 AC 109 ms
39,972 KB
testcase_15 AC 130 ms
41,112 KB
testcase_16 AC 125 ms
40,864 KB
testcase_17 AC 124 ms
41,000 KB
testcase_18 AC 111 ms
39,852 KB
testcase_19 AC 123 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

        String ans = "NO";
        for(int i = 0; i < s.length() - 2; i++) {
            if(s.charAt(i) == '5')
                if(s.charAt(i+1) == '7')
                    if(s.charAt(i+2) == '5') {
                        ans = "YES";
                        break;
                    }
        }

        System.out.println(ans);
    }
}
0