結果

問題 No.45 回転寿司
ユーザー bluemeganebluemegane
提出日時 2018-10-08 10:49:20
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 485 bytes
コンパイル時間 4,519 ms
コンパイル使用メモリ 107,120 KB
実行使用メモリ 26,468 KB
最終ジャッジ日時 2024-10-12 14:28:31
合計ジャッジ時間 2,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
26,412 KB
testcase_01 AC 31 ms
24,492 KB
testcase_02 AC 31 ms
24,172 KB
testcase_03 AC 31 ms
26,464 KB
testcase_04 AC 31 ms
26,412 KB
testcase_05 AC 26 ms
23,588 KB
testcase_06 AC 31 ms
26,468 KB
testcase_07 AC 30 ms
21,936 KB
testcase_08 AC 31 ms
26,340 KB
testcase_09 AC 31 ms
24,560 KB
testcase_10 AC 30 ms
22,196 KB
testcase_11 AC 31 ms
26,288 KB
testcase_12 AC 31 ms
26,156 KB
testcase_13 AC 26 ms
23,972 KB
testcase_14 AC 27 ms
23,788 KB
testcase_15 AC 30 ms
24,428 KB
testcase_16 AC 31 ms
24,556 KB
testcase_17 AC 31 ms
24,748 KB
testcase_18 AC 32 ms
26,028 KB
testcase_19 AC 31 ms
26,468 KB
testcase_20 AC 26 ms
23,976 KB
testcase_21 AC 26 ms
23,916 KB
testcase_22 AC 26 ms
23,916 KB
testcase_23 AC 27 ms
23,784 KB
testcase_24 AC 26 ms
25,700 KB
testcase_25 RE -
testcase_26 AC 29 ms
22,192 KB
testcase_27 AC 30 ms
24,044 KB
testcase_28 AC 31 ms
24,232 KB
testcase_29 AC 31 ms
24,240 KB
testcase_30 AC 30 ms
24,436 KB
testcase_31 AC 26 ms
23,656 KB
testcase_32 AC 26 ms
25,960 KB
testcase_33 AC 31 ms
24,432 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
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        var dp = new int[n];
        dp[0] = a[0];
        dp[1] = Max(a[0], a[1]);
        for (int i = 2; i < n; i++)
            dp[i] = Max(dp[i - 1], dp[i - 2] + a[i]);
        Console.WriteLine(dp[n - 1]);
    }
}
0