結果
問題 |
No.45 回転寿司
|
ユーザー |
![]() |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 RE * 1 |
other | AC * 30 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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]); } }