結果

問題 No.558 575検出するやつ
ユーザー YOSHIYOSHI
提出日時 2021-03-19 22:08:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 4,432 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 50,376 KB
最終ジャッジ日時 2024-11-18 22:39:59
合計ジャッジ時間 6,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,252 KB
testcase_01 AC 50 ms
50,376 KB
testcase_02 WA -
testcase_03 AC 50 ms
50,064 KB
testcase_04 AC 49 ms
50,216 KB
testcase_05 AC 51 ms
49,984 KB
testcase_06 AC 51 ms
50,372 KB
testcase_07 AC 49 ms
50,292 KB
testcase_08 AC 49 ms
49,984 KB
testcase_09 AC 51 ms
50,040 KB
testcase_10 AC 49 ms
50,068 KB
testcase_11 AC 48 ms
50,140 KB
testcase_12 AC 49 ms
50,132 KB
testcase_13 AC 50 ms
49,892 KB
testcase_14 AC 51 ms
50,288 KB
testcase_15 AC 52 ms
50,292 KB
testcase_16 AC 52 ms
50,064 KB
testcase_17 AC 50 ms
50,052 KB
testcase_18 AC 48 ms
49,976 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000558_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		if(br.readLine().indexOf("575") > 0) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0