結果
| 問題 |
No.45 回転寿司
|
| ユーザー |
bluemegane
|
| 提出日時 | 2018-10-08 10:50:59 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 5,000 ms |
| コード長 | 558 bytes |
| コンパイル時間 | 3,097 ms |
| コンパイル使用メモリ | 106,148 KB |
| 実行使用メモリ | 18,560 KB |
| 最終ジャッジ日時 | 2024-12-27 19:38:08 |
| 合計ジャッジ時間 | 5,359 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| 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);
if (n == 1) { Console.WriteLine(a[0]); goto end; }
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]);
end:;
}
}
bluemegane