結果

問題 No.558 575検出するやつ
ユーザー yamax3232yamax3232
提出日時 2018-03-16 12:25:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-12-21 14:22:55
合計ジャッジ時間 4,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,412 KB
testcase_01 AC 99 ms
41,396 KB
testcase_02 AC 114 ms
41,052 KB
testcase_03 AC 112 ms
41,576 KB
testcase_04 AC 112 ms
41,072 KB
testcase_05 AC 102 ms
41,216 KB
testcase_06 AC 110 ms
40,944 KB
testcase_07 AC 113 ms
40,936 KB
testcase_08 AC 100 ms
41,064 KB
testcase_09 AC 105 ms
41,488 KB
testcase_10 AC 115 ms
41,188 KB
testcase_11 AC 112 ms
41,032 KB
testcase_12 AC 113 ms
41,284 KB
testcase_13 AC 112 ms
41,168 KB
testcase_14 AC 97 ms
41,036 KB
testcase_15 AC 99 ms
41,176 KB
testcase_16 AC 109 ms
41,376 KB
testcase_17 AC 105 ms
41,176 KB
testcase_18 AC 112 ms
41,208 KB
testcase_19 AC 117 ms
41,348 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