結果

問題 No.558 575検出するやつ
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-03 22:15:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 3,812 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-12 03:52:15
合計ジャッジ時間 7,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,180 KB
testcase_01 AC 139 ms
41,384 KB
testcase_02 AC 137 ms
41,044 KB
testcase_03 AC 136 ms
41,464 KB
testcase_04 AC 135 ms
41,320 KB
testcase_05 AC 140 ms
41,280 KB
testcase_06 AC 137 ms
41,072 KB
testcase_07 AC 136 ms
41,540 KB
testcase_08 AC 140 ms
41,220 KB
testcase_09 AC 135 ms
41,580 KB
testcase_10 AC 133 ms
41,428 KB
testcase_11 AC 133 ms
41,336 KB
testcase_12 AC 137 ms
41,040 KB
testcase_13 AC 136 ms
41,336 KB
testcase_14 AC 135 ms
41,556 KB
testcase_15 AC 135 ms
41,472 KB
testcase_16 AC 134 ms
41,428 KB
testcase_17 AC 134 ms
41,364 KB
testcase_18 AC 134 ms
41,316 KB
testcase_19 AC 134 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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