結果

問題 No.558 575検出するやつ
ユーザー mbanmban
提出日時 2017-08-26 11:03:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 64 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2024-04-23 17:06:27
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,088 KB
testcase_01 AC 34 ms
51,952 KB
testcase_02 AC 31 ms
53,104 KB
testcase_03 AC 33 ms
52,336 KB
testcase_04 AC 38 ms
53,040 KB
testcase_05 AC 35 ms
52,092 KB
testcase_06 AC 34 ms
52,120 KB
testcase_07 AC 34 ms
53,440 KB
testcase_08 AC 33 ms
52,688 KB
testcase_09 AC 33 ms
51,988 KB
testcase_10 AC 34 ms
52,944 KB
testcase_11 AC 34 ms
53,120 KB
testcase_12 AC 33 ms
52,864 KB
testcase_13 AC 35 ms
52,004 KB
testcase_14 AC 34 ms
52,376 KB
testcase_15 AC 34 ms
52,972 KB
testcase_16 AC 34 ms
52,556 KB
testcase_17 AC 33 ms
53,560 KB
testcase_18 AC 34 ms
53,236 KB
testcase_19 AC 34 ms
52,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()

if "575" in s:
    print('YES')
else:
    print('NO')
0