結果

問題 No.558 575検出するやつ
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-03 09:18:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 3,321 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 50,400 KB
最終ジャッジ日時 2024-04-27 22:33:57
合計ジャッジ時間 4,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,236 KB
testcase_01 AC 45 ms
50,080 KB
testcase_02 AC 46 ms
50,032 KB
testcase_03 AC 47 ms
50,068 KB
testcase_04 AC 46 ms
50,304 KB
testcase_05 AC 47 ms
50,320 KB
testcase_06 AC 46 ms
50,200 KB
testcase_07 AC 47 ms
50,148 KB
testcase_08 AC 45 ms
50,364 KB
testcase_09 AC 45 ms
49,964 KB
testcase_10 AC 47 ms
50,400 KB
testcase_11 AC 46 ms
50,192 KB
testcase_12 AC 49 ms
50,020 KB
testcase_13 AC 49 ms
49,960 KB
testcase_14 AC 49 ms
50,228 KB
testcase_15 AC 48 ms
50,148 KB
testcase_16 AC 46 ms
50,292 KB
testcase_17 AC 45 ms
50,292 KB
testcase_18 AC 46 ms
50,020 KB
testcase_19 AC 48 ms
49,956 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();
		}catch(NumberFormatException e){
		e.getStackTrace();
		}
	}
}
0