結果

問題 No.558 575検出するやつ
ユーザー Pump0129Pump0129
提出日時 2018-03-28 16:08:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 72,160 KB
実行使用メモリ 56,088 KB
最終ジャッジ日時 2023-09-07 19:24:58
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
56,088 KB
testcase_01 AC 120 ms
55,796 KB
testcase_02 AC 118 ms
55,776 KB
testcase_03 AC 118 ms
55,604 KB
testcase_04 AC 119 ms
55,744 KB
testcase_05 AC 115 ms
55,816 KB
testcase_06 AC 113 ms
55,924 KB
testcase_07 AC 114 ms
55,912 KB
testcase_08 AC 113 ms
55,956 KB
testcase_09 AC 117 ms
55,696 KB
testcase_10 AC 121 ms
55,564 KB
testcase_11 AC 114 ms
55,988 KB
testcase_12 AC 114 ms
55,900 KB
testcase_13 AC 118 ms
55,760 KB
testcase_14 AC 118 ms
55,456 KB
testcase_15 AC 120 ms
55,892 KB
testcase_16 AC 119 ms
55,816 KB
testcase_17 AC 113 ms
55,804 KB
testcase_18 AC 123 ms
55,700 KB
testcase_19 AC 115 ms
55,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no558;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        System.out.println(
                new Scanner(System.in).nextLine().matches(".*575.*") ? "YES" : "NO"
        );
    }
}
0