結果

問題 No.290 1010
ユーザー bluemeganebluemegane
提出日時 2021-04-22 07:36:07
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 104,928 KB
実行使用メモリ 29,880 KB
最終ジャッジ日時 2024-07-04 06:15:44
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,240 KB
testcase_01 AC 26 ms
26,156 KB
testcase_02 AC 25 ms
26,172 KB
testcase_03 AC 26 ms
23,996 KB
testcase_04 AC 25 ms
26,200 KB
testcase_05 AC 25 ms
24,536 KB
testcase_06 AC 25 ms
24,256 KB
testcase_07 AC 24 ms
24,124 KB
testcase_08 AC 23 ms
24,156 KB
testcase_09 AC 24 ms
24,152 KB
testcase_10 AC 23 ms
26,036 KB
testcase_11 AC 25 ms
24,544 KB
testcase_12 AC 25 ms
24,532 KB
testcase_13 AC 24 ms
25,900 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 25 ms
24,240 KB
testcase_17 AC 26 ms
26,292 KB
testcase_18 AC 26 ms
26,172 KB
testcase_19 AC 25 ms
24,284 KB
testcase_20 AC 33 ms
29,632 KB
testcase_21 AC 41 ms
27,708 KB
testcase_22 WA -
testcase_23 AC 33 ms
29,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        Console.ReadLine();
        var s = Console.ReadLine().Trim();
        getAns(s);
    }
    static bool calc(string s, string t) => s.IndexOf(t) != -1;
    static void getAns(string s)
    {
        if (calc(s, "00")) { Console.WriteLine("YES"); return; }
        if (calc(s, "11")) { Console.WriteLine("YES"); return; }
        Console.WriteLine("NO");
    }
}
0