結果
問題 | No.2835 Take and Flip |
ユーザー | tobisatis |
提出日時 | 2024-08-09 21:28:38 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 108 ms / 2,000 ms |
コード長 | 1,481 bytes |
コンパイル時間 | 8,360 ms |
コンパイル使用メモリ | 169,632 KB |
実行使用メモリ | 197,632 KB |
最終ジャッジ日時 | 2024-08-09 21:28:55 |
合計ジャッジ時間 | 11,798 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
30,720 KB |
testcase_01 | AC | 54 ms
30,208 KB |
testcase_02 | AC | 56 ms
30,444 KB |
testcase_03 | AC | 98 ms
64,604 KB |
testcase_04 | AC | 108 ms
64,980 KB |
testcase_05 | AC | 56 ms
30,228 KB |
testcase_06 | AC | 93 ms
55,716 KB |
testcase_07 | AC | 91 ms
55,916 KB |
testcase_08 | AC | 89 ms
53,880 KB |
testcase_09 | AC | 96 ms
57,616 KB |
testcase_10 | AC | 94 ms
57,480 KB |
testcase_11 | AC | 95 ms
57,364 KB |
testcase_12 | AC | 98 ms
57,352 KB |
testcase_13 | AC | 93 ms
57,372 KB |
testcase_14 | AC | 74 ms
42,240 KB |
testcase_15 | AC | 56 ms
30,848 KB |
testcase_16 | AC | 94 ms
50,824 KB |
testcase_17 | AC | 61 ms
32,896 KB |
testcase_18 | AC | 88 ms
52,580 KB |
testcase_19 | AC | 95 ms
56,212 KB |
testcase_20 | AC | 73 ms
40,960 KB |
testcase_21 | AC | 94 ms
55,836 KB |
testcase_22 | AC | 84 ms
51,784 KB |
testcase_23 | AC | 72 ms
197,632 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (134 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/
ソースコード
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(Input<long>); return az.Sum(); } 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(); } }