結果

問題 No.558 575検出するやつ
ユーザー YOSHIYOSHI
提出日時 2021-03-19 22:08:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 4,656 ms
コンパイル使用メモリ 72,908 KB
実行使用メモリ 36,952 KB
最終ジャッジ日時 2024-04-29 17:03:58
合計ジャッジ時間 5,738 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,724 KB
testcase_01 AC 50 ms
36,808 KB
testcase_02 WA -
testcase_03 AC 51 ms
36,732 KB
testcase_04 AC 52 ms
36,700 KB
testcase_05 AC 53 ms
36,872 KB
testcase_06 AC 51 ms
36,824 KB
testcase_07 AC 51 ms
36,604 KB
testcase_08 AC 52 ms
36,704 KB
testcase_09 AC 52 ms
36,860 KB
testcase_10 AC 51 ms
36,336 KB
testcase_11 AC 53 ms
36,336 KB
testcase_12 AC 53 ms
36,884 KB
testcase_13 AC 51 ms
36,268 KB
testcase_14 AC 52 ms
36,596 KB
testcase_15 AC 50 ms
36,700 KB
testcase_16 AC 52 ms
36,456 KB
testcase_17 AC 55 ms
36,892 KB
testcase_18 AC 55 ms
36,952 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