結果

問題 No.558 575検出するやつ
ユーザー yamax3232yamax3232
提出日時 2018-03-16 12:25:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-01 09:21:54
合計ジャッジ時間 5,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,976 KB
testcase_01 AC 127 ms
53,992 KB
testcase_02 AC 130 ms
54,096 KB
testcase_03 AC 129 ms
53,728 KB
testcase_04 AC 126 ms
53,996 KB
testcase_05 AC 128 ms
53,972 KB
testcase_06 AC 128 ms
53,856 KB
testcase_07 AC 128 ms
53,964 KB
testcase_08 AC 129 ms
54,408 KB
testcase_09 AC 128 ms
53,992 KB
testcase_10 AC 128 ms
54,104 KB
testcase_11 AC 127 ms
53,828 KB
testcase_12 AC 127 ms
54,016 KB
testcase_13 AC 127 ms
54,152 KB
testcase_14 AC 125 ms
53,968 KB
testcase_15 AC 127 ms
54,200 KB
testcase_16 AC 137 ms
54,032 KB
testcase_17 AC 129 ms
53,944 KB
testcase_18 AC 126 ms
54,196 KB
testcase_19 AC 127 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		String s=kb.next();
		String ret="NO";
		for(int i=0;i<s.length();i++){
			if(i+2<s.length()){
				if(s.charAt(i)=='5'&&s.charAt(i+1)=='7'
						&&s.charAt(i+2)=='5'){
					ret="YES";
					break;
				}
			}

		}
		System.out.println(ret);
	}

}
0