結果

問題 No.558 575検出するやつ
ユーザー CroweaCrowea
提出日時 2019-01-23 23:43:21
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 992 ms
コンパイル使用メモリ 62,916 KB
実行使用メモリ 22,604 KB
最終ジャッジ日時 2023-10-14 09:32:46
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
22,492 KB
testcase_01 AC 49 ms
20,536 KB
testcase_02 AC 49 ms
20,436 KB
testcase_03 AC 48 ms
18,580 KB
testcase_04 AC 49 ms
20,552 KB
testcase_05 AC 49 ms
22,584 KB
testcase_06 AC 50 ms
20,624 KB
testcase_07 AC 49 ms
20,428 KB
testcase_08 AC 49 ms
22,604 KB
testcase_09 AC 49 ms
20,368 KB
testcase_10 AC 49 ms
20,544 KB
testcase_11 AC 49 ms
20,572 KB
testcase_12 AC 48 ms
20,568 KB
testcase_13 AC 49 ms
18,536 KB
testcase_14 AC 49 ms
20,532 KB
testcase_15 AC 50 ms
20,572 KB
testcase_16 AC 48 ms
18,436 KB
testcase_17 AC 49 ms
20,444 KB
testcase_18 AC 48 ms
20,564 KB
testcase_19 AC 49 ms
22,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

class Program
{
    static void Main(string[] args)
    {
        var msg = Console.ReadLine().Contains("575") ? "YES" : "NO";
        Console.WriteLine(msg);
    }
}
0