結果

問題 No.558 575検出するやつ
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:29:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 71,252 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2023-10-11 11:19:57
合計ジャッジ時間 5,435 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
55,716 KB
testcase_01 AC 117 ms
55,676 KB
testcase_02 AC 116 ms
55,608 KB
testcase_03 AC 117 ms
55,780 KB
testcase_04 AC 116 ms
55,800 KB
testcase_05 AC 119 ms
55,940 KB
testcase_06 AC 116 ms
55,916 KB
testcase_07 AC 115 ms
55,948 KB
testcase_08 AC 117 ms
56,020 KB
testcase_09 AC 118 ms
55,568 KB
testcase_10 AC 118 ms
55,548 KB
testcase_11 AC 119 ms
55,892 KB
testcase_12 AC 117 ms
55,572 KB
testcase_13 AC 122 ms
55,760 KB
testcase_14 AC 122 ms
55,652 KB
testcase_15 AC 119 ms
55,800 KB
testcase_16 AC 117 ms
56,056 KB
testcase_17 AC 121 ms
55,908 KB
testcase_18 AC 120 ms
56,032 KB
testcase_19 AC 121 ms
55,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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