結果

問題 No.505 カードの数式2
ユーザー bluemeganebluemegane
提出日時 2018-09-13 17:44:44
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 616 bytes
コンパイル時間 877 ms
コンパイル使用メモリ 110,048 KB
実行使用メモリ 27,248 KB
最終ジャッジ日時 2024-07-01 04:28:17
合計ジャッジ時間 2,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,964 KB
testcase_01 AC 27 ms
25,008 KB
testcase_02 AC 27 ms
25,096 KB
testcase_03 AC 27 ms
24,756 KB
testcase_04 AC 26 ms
24,964 KB
testcase_05 AC 26 ms
24,716 KB
testcase_06 AC 28 ms
27,004 KB
testcase_07 AC 27 ms
24,836 KB
testcase_08 AC 27 ms
26,748 KB
testcase_09 AC 27 ms
24,972 KB
testcase_10 AC 27 ms
25,136 KB
testcase_11 AC 27 ms
26,884 KB
testcase_12 AC 27 ms
27,136 KB
testcase_13 WA -
testcase_14 AC 27 ms
24,824 KB
testcase_15 WA -
testcase_16 AC 27 ms
24,712 KB
testcase_17 AC 27 ms
25,092 KB
testcase_18 AC 27 ms
24,960 KB
testcase_19 WA -
testcase_20 AC 27 ms
25,004 KB
testcase_21 AC 28 ms
27,248 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 27 ms
22,836 KB
testcase_30 AC 27 ms
27,136 KB
testcase_31 AC 27 ms
26,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        var res = a[0];
        for (int i = 1; i < n; i++)
        {
            var t = new long[4];
            t[0] = res + a[i];
            t[1] = res * a[i];
            t[2] = res - a[i];
            if (a[i] != 0) t[3] = res / a[i];
            else t[3] = int.MinValue;
            res = t.Max();
        }
        Console.WriteLine(res);
    }
}
0