結果

問題 No.558 575検出するやつ
ユーザー tsunabittsunabit
提出日時 2018-07-08 18:13:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 2,897 ms
コンパイル使用メモリ 76,068 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-07-07 21:17:47
合計ジャッジ時間 5,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,084 KB
testcase_01 AC 99 ms
40,952 KB
testcase_02 AC 99 ms
40,856 KB
testcase_03 AC 101 ms
39,876 KB
testcase_04 AC 102 ms
39,808 KB
testcase_05 AC 92 ms
39,808 KB
testcase_06 AC 108 ms
40,992 KB
testcase_07 AC 89 ms
40,088 KB
testcase_08 AC 98 ms
41,316 KB
testcase_09 AC 90 ms
40,112 KB
testcase_10 AC 107 ms
40,820 KB
testcase_11 AC 88 ms
39,692 KB
testcase_12 AC 97 ms
40,560 KB
testcase_13 AC 91 ms
39,808 KB
testcase_14 AC 110 ms
40,988 KB
testcase_15 AC 101 ms
40,832 KB
testcase_16 AC 102 ms
40,980 KB
testcase_17 AC 99 ms
41,136 KB
testcase_18 AC 108 ms
41,168 KB
testcase_19 AC 100 ms
40,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No558 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String s = sc.next();
		System.out.println(s.contains("575") ? "YES" : "NO");
	}
}
0