結果

問題 No.558 575検出するやつ
ユーザー samplelpmassamplelpmas
提出日時 2017-09-02 07:33:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 3,699 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-11-06 18:20:28
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    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