結果

問題 No.45 回転寿司
ユーザー AreTrashAreTrash
提出日時 2016-04-13 12:46:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 646 bytes
コンパイル時間 3,411 ms
コンパイル使用メモリ 102,884 KB
実行使用メモリ 23,820 KB
最終ジャッジ日時 2023-08-27 14:43:10
合計ジャッジ時間 6,501 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
21,740 KB
testcase_01 AC 69 ms
21,756 KB
testcase_02 AC 69 ms
21,640 KB
testcase_03 AC 69 ms
21,512 KB
testcase_04 AC 69 ms
21,516 KB
testcase_05 AC 62 ms
21,448 KB
testcase_06 AC 68 ms
23,628 KB
testcase_07 AC 69 ms
23,552 KB
testcase_08 AC 68 ms
21,584 KB
testcase_09 AC 68 ms
21,780 KB
testcase_10 AC 69 ms
21,724 KB
testcase_11 AC 67 ms
21,648 KB
testcase_12 AC 67 ms
21,572 KB
testcase_13 AC 61 ms
23,544 KB
testcase_14 AC 61 ms
21,628 KB
testcase_15 AC 69 ms
23,820 KB
testcase_16 AC 68 ms
21,644 KB
testcase_17 AC 67 ms
21,508 KB
testcase_18 AC 67 ms
21,648 KB
testcase_19 AC 68 ms
21,708 KB
testcase_20 AC 62 ms
21,628 KB
testcase_21 AC 62 ms
23,684 KB
testcase_22 AC 60 ms
21,632 KB
testcase_23 AC 60 ms
19,344 KB
testcase_24 AC 60 ms
21,500 KB
testcase_25 AC 61 ms
21,504 KB
testcase_26 AC 68 ms
19,600 KB
testcase_27 AC 69 ms
21,708 KB
testcase_28 AC 68 ms
23,680 KB
testcase_29 AC 68 ms
23,616 KB
testcase_30 AC 67 ms
21,624 KB
testcase_31 AC 59 ms
21,448 KB
testcase_32 AC 61 ms
21,500 KB
testcase_33 AC 71 ms
23,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace No45_2 {
    public class Program {
        public static void Main(string[] args){
            var n = int.Parse(Console.ReadLine());
            var sushiList = new List<int>{0};
            sushiList.AddRange(Console.ReadLine().Split().ToList().ConvertAll(int.Parse));

            var dp = new List<int> {sushiList[0], sushiList[1], sushiList[n == 1 ? 1 : 2]};
            for(var i = 3; i <= n; i++){
                dp.Add(Math.Max(dp[i - 3], dp[i - 2]) + sushiList[i]);
            }

            Console.WriteLine(Math.Max(dp[n], dp[n - 1]));
        }
    }
}
0