結果

問題 No.999 てん vs. ほむ
ユーザー bluemeganebluemegane
提出日時 2020-09-11 11:31:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 1,686 ms
コンパイル使用メモリ 103,424 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-06-07 12:32:42
合計ジャッジ時間 3,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,536 KB
testcase_01 AC 21 ms
17,536 KB
testcase_02 AC 21 ms
17,792 KB
testcase_03 AC 22 ms
17,536 KB
testcase_04 AC 21 ms
17,536 KB
testcase_05 AC 25 ms
18,304 KB
testcase_06 AC 23 ms
17,664 KB
testcase_07 AC 26 ms
18,048 KB
testcase_08 AC 27 ms
18,816 KB
testcase_09 AC 90 ms
36,864 KB
testcase_10 AC 44 ms
22,656 KB
testcase_11 AC 38 ms
21,508 KB
testcase_12 AC 54 ms
25,600 KB
testcase_13 AC 107 ms
41,600 KB
testcase_14 AC 105 ms
41,728 KB
testcase_15 AC 104 ms
41,728 KB
testcase_16 AC 105 ms
41,728 KB
testcase_17 AC 80 ms
33,920 KB
testcase_18 AC 81 ms
34,176 KB
testcase_19 AC 85 ms
34,176 KB
testcase_20 AC 88 ms
34,048 KB
testcase_21 AC 95 ms
37,632 KB
testcase_22 AC 94 ms
37,504 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;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = new int[n];
        var b = new int[n];
        var bsum = 0L;
        var sum = 0L;
        for (int i = 0; i < n; i++)
        {
            a[i] = int.Parse(line[i * 2]);
            b[i] = int.Parse(line[i * 2 + 1]);
            bsum += b[i];
            sum += a[i] + b[i];
        }
        getAns(n, a, b, bsum, sum);
    }
    static void getAns(int n, int[] a, int[] b, long bsum, long sum)
    {
        var ans = 2 * bsum - sum;
        var asum = 0L;
        for (int i = 0; i < n; i++)
        {
            asum += a[i];
            bsum -= b[i];
            ans = Max(ans, 2 * asum + 2 * bsum - sum);
        }
        Console.WriteLine(ans);
    }
}
0