結果

問題 No.2836 Comment Out
ユーザー tobisatistobisatis
提出日時 2024-08-09 21:25:04
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,517 bytes
コンパイル時間 9,376 ms
コンパイル使用メモリ 168,352 KB
実行使用メモリ 187,788 KB
最終ジャッジ日時 2024-08-09 21:25:23
合計ジャッジ時間 15,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
29,932 KB
testcase_01 AC 52 ms
30,080 KB
testcase_02 AC 51 ms
29,932 KB
testcase_03 AC 53 ms
30,080 KB
testcase_04 AC 51 ms
29,824 KB
testcase_05 AC 50 ms
30,080 KB
testcase_06 AC 52 ms
29,824 KB
testcase_07 AC 78 ms
41,984 KB
testcase_08 AC 78 ms
42,368 KB
testcase_09 AC 94 ms
54,912 KB
testcase_10 AC 89 ms
54,872 KB
testcase_11 AC 90 ms
55,040 KB
testcase_12 AC 91 ms
54,860 KB
testcase_13 AC 91 ms
54,912 KB
testcase_14 AC 91 ms
54,656 KB
testcase_15 AC 92 ms
54,656 KB
testcase_16 AC 90 ms
54,784 KB
testcase_17 AC 93 ms
54,784 KB
testcase_18 AC 92 ms
54,856 KB
testcase_19 AC 92 ms
54,656 KB
testcase_20 AC 90 ms
55,040 KB
testcase_21 AC 90 ms
54,912 KB
testcase_22 AC 91 ms
54,764 KB
testcase_23 AC 92 ms
54,840 KB
testcase_24 AC 74 ms
42,496 KB
testcase_25 AC 83 ms
46,592 KB
testcase_26 AC 65 ms
37,504 KB
testcase_27 AC 84 ms
49,792 KB
testcase_28 AC 77 ms
44,288 KB
testcase_29 AC 80 ms
48,000 KB
testcase_30 AC 69 ms
40,808 KB
testcase_31 AC 78 ms
47,744 KB
testcase_32 AC 63 ms
36,096 KB
testcase_33 AC 72 ms
40,832 KB
testcase_34 AC 68 ms
37,248 KB
testcase_35 AC 89 ms
51,456 KB
testcase_36 AC 70 ms
40,428 KB
testcase_37 AC 83 ms
50,688 KB
testcase_38 AC 77 ms
45,952 KB
testcase_39 AC 75 ms
42,624 KB
testcase_40 AC 75 ms
43,904 KB
testcase_41 AC 81 ms
48,512 KB
testcase_42 AC 82 ms
45,696 KB
testcase_43 AC 63 ms
35,072 KB
testcase_44 AC 51 ms
29,696 KB
testcase_45 AC 53 ms
30,204 KB
testcase_46 AC 52 ms
30,080 KB
testcase_47 AC 53 ms
30,208 KB
testcase_48 AC 52 ms
29,824 KB
testcase_49 AC 51 ms
30,208 KB
testcase_50 AC 52 ms
30,080 KB
testcase_51 AC 53 ms
29,928 KB
testcase_52 AC 53 ms
30,080 KB
testcase_53 AC 51 ms
29,952 KB
testcase_54 AC 52 ms
29,824 KB
testcase_55 AC 53 ms
187,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var az = n.Repeat(Int);
        var c = az.Where(a => a <= 1).Count();
        return c > 0;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0