結果
| 問題 |
No.45 回転寿司
|
| ユーザー |
杉山新
|
| 提出日時 | 2020-07-09 08:57:39 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 225 bytes |
| コンパイル時間 | 134 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-10-06 08:00:56 |
| 合計ジャッジ時間 | 2,153 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 3 |
| other | WA * 30 |
ソースコード
N = int(input())
sushi = list(map(int,input().split()))
if N==1:
print(sushi[0])
else:
A = [0]*(N+1)
A[1]=sushi[0]
for i in range(2,N):
A[i] = max(A[i-1],A[i-2]+sushi[i])
print(A[N])
杉山新