結果
| 問題 | No.45 回転寿司 |
| ユーザー |
neko
|
| 提出日時 | 2019-11-03 19:17:02 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 244 bytes |
| コンパイル時間 | 180 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-09-14 23:34:44 |
| 合計ジャッジ時間 | 2,346 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 30 |
ソースコード
N = int(input())
V = list(map(int,input().split()))
if N == 1:
print(V.pop())
else:
ans = [0] * (N + 1)
ans[1] = V[0]
for i in range(2, N + 1):
answers[i] = max(answers[i - 1], answers[i - 2] + V[i - 1])
print(ans[N])
neko