結果

問題 No.558 575検出するやつ
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-03 09:18:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 3,038 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 50,328 KB
最終ジャッジ日時 2024-04-27 22:34:34
合計ジャッジ時間 5,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,236 KB
testcase_01 AC 52 ms
50,168 KB
testcase_02 AC 52 ms
50,304 KB
testcase_03 AC 54 ms
50,232 KB
testcase_04 AC 52 ms
49,936 KB
testcase_05 AC 52 ms
50,260 KB
testcase_06 AC 52 ms
50,216 KB
testcase_07 AC 54 ms
50,224 KB
testcase_08 AC 54 ms
50,168 KB
testcase_09 AC 53 ms
50,244 KB
testcase_10 AC 53 ms
50,164 KB
testcase_11 AC 52 ms
50,248 KB
testcase_12 AC 53 ms
50,160 KB
testcase_13 AC 53 ms
50,172 KB
testcase_14 AC 52 ms
50,312 KB
testcase_15 AC 52 ms
50,216 KB
testcase_16 AC 52 ms
50,292 KB
testcase_17 AC 52 ms
49,896 KB
testcase_18 AC 53 ms
49,756 KB
testcase_19 AC 52 ms
50,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No558 {
	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			String str = br.readLine();
			if(str.indexOf("575") != -1) System.out.println("YES");
			else System.out.println("NO");
		}catch(IOException e){
			e.getStackTrace();
		}
	}
}
0