結果

問題 No.558 575検出するやつ
ユーザー tsunabittsunabit
提出日時 2018-07-08 18:13:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 3,968 ms
コンパイル使用メモリ 75,232 KB
実行使用メモリ 56,332 KB
最終ジャッジ日時 2023-09-22 04:31:30
合計ジャッジ時間 7,415 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
55,556 KB
testcase_01 AC 119 ms
55,560 KB
testcase_02 AC 117 ms
56,084 KB
testcase_03 AC 116 ms
55,288 KB
testcase_04 AC 115 ms
55,716 KB
testcase_05 AC 118 ms
55,356 KB
testcase_06 AC 116 ms
55,708 KB
testcase_07 AC 117 ms
55,276 KB
testcase_08 AC 118 ms
55,716 KB
testcase_09 AC 115 ms
55,604 KB
testcase_10 AC 116 ms
55,608 KB
testcase_11 AC 132 ms
55,536 KB
testcase_12 AC 132 ms
56,332 KB
testcase_13 AC 115 ms
55,520 KB
testcase_14 AC 115 ms
55,940 KB
testcase_15 AC 117 ms
55,772 KB
testcase_16 AC 116 ms
55,624 KB
testcase_17 AC 117 ms
55,892 KB
testcase_18 AC 116 ms
53,780 KB
testcase_19 AC 115 ms
55,472 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