結果

問題 No.558 575検出するやつ
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-03 09:18:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 3,534 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 50,232 KB
最終ジャッジ日時 2024-11-16 05:25:41
合計ジャッジ時間 5,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,076 KB
testcase_01 AC 55 ms
50,004 KB
testcase_02 AC 53 ms
49,952 KB
testcase_03 AC 53 ms
50,080 KB
testcase_04 AC 52 ms
50,052 KB
testcase_05 AC 53 ms
49,912 KB
testcase_06 AC 54 ms
49,992 KB
testcase_07 AC 53 ms
50,020 KB
testcase_08 AC 53 ms
49,756 KB
testcase_09 AC 54 ms
49,908 KB
testcase_10 AC 54 ms
49,836 KB
testcase_11 AC 53 ms
50,164 KB
testcase_12 AC 53 ms
49,996 KB
testcase_13 AC 53 ms
49,920 KB
testcase_14 AC 53 ms
50,140 KB
testcase_15 AC 52 ms
50,008 KB
testcase_16 AC 53 ms
50,232 KB
testcase_17 AC 54 ms
49,892 KB
testcase_18 AC 53 ms
50,104 KB
testcase_19 AC 53 ms
49,988 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