結果
| 問題 |
No.45 回転寿司
|
| ユーザー |
bluemegane
|
| 提出日時 | 2018-10-08 10:48:27 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 448 bytes |
| コンパイル時間 | 751 ms |
| コンパイル使用メモリ | 105,960 KB |
| 実行使用メモリ | 26,668 KB |
| 最終ジャッジ日時 | 2024-10-12 14:28:24 |
| 合計ジャッジ時間 | 2,730 ms |
|
ジャッジサーバーID (参考情報) |
judge / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 RE * 1 |
| other | WA * 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 ]);
}
}
bluemegane