結果

問題 No.558 575検出するやつ
ユーザー creep04creep04
提出日時 2017-10-11 03:07:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 4,006 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-11-17 09:05:37
合計ジャッジ時間 7,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,796 KB
testcase_01 AC 129 ms
41,456 KB
testcase_02 AC 121 ms
41,292 KB
testcase_03 AC 123 ms
41,088 KB
testcase_04 AC 121 ms
40,976 KB
testcase_05 AC 122 ms
40,924 KB
testcase_06 AC 125 ms
41,144 KB
testcase_07 AC 128 ms
41,440 KB
testcase_08 AC 127 ms
40,924 KB
testcase_09 AC 123 ms
41,172 KB
testcase_10 AC 123 ms
40,972 KB
testcase_11 AC 126 ms
41,056 KB
testcase_12 AC 123 ms
41,032 KB
testcase_13 AC 124 ms
40,896 KB
testcase_14 AC 121 ms
41,088 KB
testcase_15 AC 124 ms
40,884 KB
testcase_16 AC 119 ms
41,196 KB
testcase_17 AC 110 ms
39,744 KB
testcase_18 AC 135 ms
40,856 KB
testcase_19 AC 123 ms
40,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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