結果

問題 No.1199 お菓子配り-2
ユーザー bluemeganebluemegane
提出日時 2021-04-20 17:18:13
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 452 ms / 1,000 ms
コード長 842 bytes
コンパイル時間 1,012 ms
コンパイル使用メモリ 104,960 KB
実行使用メモリ 42,732 KB
最終ジャッジ日時 2024-07-04 05:22:27
合計ジャッジ時間 19,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
18,688 KB
testcase_01 AC 21 ms
18,688 KB
testcase_02 AC 22 ms
18,944 KB
testcase_03 AC 109 ms
31,488 KB
testcase_04 AC 231 ms
41,088 KB
testcase_05 AC 32 ms
20,708 KB
testcase_06 AC 37 ms
22,144 KB
testcase_07 AC 123 ms
35,328 KB
testcase_08 AC 166 ms
40,192 KB
testcase_09 AC 110 ms
33,152 KB
testcase_10 AC 47 ms
23,808 KB
testcase_11 AC 91 ms
30,720 KB
testcase_12 AC 90 ms
30,848 KB
testcase_13 AC 49 ms
25,216 KB
testcase_14 AC 44 ms
23,552 KB
testcase_15 AC 41 ms
23,424 KB
testcase_16 AC 167 ms
41,216 KB
testcase_17 AC 100 ms
29,824 KB
testcase_18 AC 171 ms
37,376 KB
testcase_19 AC 64 ms
23,552 KB
testcase_20 AC 281 ms
40,576 KB
testcase_21 AC 183 ms
39,168 KB
testcase_22 AC 102 ms
23,552 KB
testcase_23 AC 144 ms
32,000 KB
testcase_24 AC 181 ms
38,656 KB
testcase_25 AC 53 ms
24,960 KB
testcase_26 AC 217 ms
40,448 KB
testcase_27 AC 185 ms
41,088 KB
testcase_28 AC 437 ms
42,364 KB
testcase_29 AC 425 ms
42,512 KB
testcase_30 AC 444 ms
42,632 KB
testcase_31 AC 445 ms
42,332 KB
testcase_32 AC 452 ms
42,732 KB
testcase_33 AC 439 ms
42,440 KB
testcase_34 AC 434 ms
42,300 KB
testcase_35 AC 442 ms
42,572 KB
testcase_36 AC 448 ms
42,332 KB
testcase_37 AC 433 ms
42,428 KB
testcase_38 AC 429 ms
42,148 KB
testcase_39 AC 408 ms
42,672 KB
testcase_40 AC 427 ms
42,356 KB
testcase_41 AC 425 ms
42,444 KB
testcase_42 AC 419 ms
42,500 KB
testcase_43 AC 426 ms
42,468 KB
testcase_44 AC 431 ms
42,372 KB
testcase_45 AC 411 ms
42,324 KB
testcase_46 AC 420 ms
42,232 KB
testcase_47 AC 411 ms
42,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var a = new long[n];
        for (int i = 0; i < n; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            var w = Array.ConvertAll(line, long.Parse);
            a[i] = w.Sum();
        }
        getAns(n, a);
    }
    static void getAns(int n, long[] a)
    {
        var preT = a[0];
        var preF = 0L;
        for (int i = 1; i < n; i++)
        {
            var wT = preF + a[i];
            var wF = preT - a[i];
            wT = Max(wT, preT);
            wF = Max(wF, preF);
            preF = wF;
            preT = wT;
        }
        Console.WriteLine(Max(preT, preF));
    }
}
0