結果

問題 No.45 回転寿司
ユーザー boya978boya978
提出日時 2021-01-13 22:07:24
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 494 bytes
コンパイル時間 4,869 ms
コンパイル使用メモリ 110,928 KB
実行使用メモリ 27,616 KB
最終ジャッジ日時 2024-11-22 18:28:40
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
25,648 KB
testcase_01 AC 35 ms
25,372 KB
testcase_02 AC 34 ms
25,564 KB
testcase_03 AC 33 ms
27,596 KB
testcase_04 AC 35 ms
27,616 KB
testcase_05 AC 30 ms
25,108 KB
testcase_06 AC 33 ms
25,436 KB
testcase_07 AC 34 ms
25,372 KB
testcase_08 AC 33 ms
25,496 KB
testcase_09 AC 33 ms
25,436 KB
testcase_10 AC 34 ms
25,504 KB
testcase_11 AC 34 ms
25,496 KB
testcase_12 AC 34 ms
25,504 KB
testcase_13 AC 30 ms
23,092 KB
testcase_14 AC 29 ms
25,120 KB
testcase_15 AC 33 ms
25,244 KB
testcase_16 AC 34 ms
25,628 KB
testcase_17 AC 34 ms
25,432 KB
testcase_18 AC 33 ms
23,480 KB
testcase_19 AC 33 ms
25,308 KB
testcase_20 AC 30 ms
25,244 KB
testcase_21 AC 30 ms
25,116 KB
testcase_22 AC 30 ms
25,116 KB
testcase_23 AC 29 ms
24,972 KB
testcase_24 AC 29 ms
25,240 KB
testcase_25 AC 29 ms
27,156 KB
testcase_26 AC 33 ms
25,244 KB
testcase_27 AC 34 ms
25,372 KB
testcase_28 AC 33 ms
25,308 KB
testcase_29 AC 33 ms
25,240 KB
testcase_30 AC 33 ms
27,228 KB
testcase_31 AC 29 ms
27,156 KB
testcase_32 AC 28 ms
27,276 KB
testcase_33 AC 34 ms
25,452 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.Linq;
public class Hello{
    public static void Main(){
        
        int n=int.Parse(Console.ReadLine());
        var V = Console.ReadLine().Split().Select(int.Parse).ToArray();
        
        var dp = new int[2];
        
        for(int i=0;i<n;i++)
        {
            var dp2 = new int[2];
            dp2[0] = dp.Max();
            dp2[1] = dp[0] + V[i];
            Array.Copy(dp2,dp,2);
        }
        
        Console.WriteLine(dp.Max());
    }
}
0