結果

問題 No.45 回転寿司
ユーザー Woo-CieWoo-Cie
提出日時 2019-03-23 02:47:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 484 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 44,064 KB
最終ジャッジ日時 2024-06-08 12:43:28
合計ジャッジ時間 19,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
43,556 KB
testcase_01 AC 476 ms
43,932 KB
testcase_02 AC 465 ms
44,064 KB
testcase_03 AC 479 ms
43,804 KB
testcase_04 AC 470 ms
43,432 KB
testcase_05 AC 468 ms
43,944 KB
testcase_06 AC 473 ms
43,292 KB
testcase_07 AC 469 ms
43,564 KB
testcase_08 AC 466 ms
43,676 KB
testcase_09 AC 475 ms
43,808 KB
testcase_10 AC 481 ms
43,428 KB
testcase_11 AC 466 ms
43,436 KB
testcase_12 AC 470 ms
43,556 KB
testcase_13 AC 469 ms
43,308 KB
testcase_14 AC 458 ms
43,684 KB
testcase_15 AC 467 ms
43,680 KB
testcase_16 AC 475 ms
43,316 KB
testcase_17 AC 478 ms
43,808 KB
testcase_18 AC 464 ms
43,312 KB
testcase_19 AC 470 ms
43,816 KB
testcase_20 AC 473 ms
44,064 KB
testcase_21 AC 484 ms
43,804 KB
testcase_22 AC 474 ms
43,412 KB
testcase_23 AC 473 ms
43,808 KB
testcase_24 AC 472 ms
43,684 KB
testcase_25 AC 461 ms
43,304 KB
testcase_26 AC 467 ms
43,424 KB
testcase_27 AC 482 ms
43,308 KB
testcase_28 AC 471 ms
43,420 KB
testcase_29 AC 480 ms
43,684 KB
testcase_30 AC 480 ms
43,432 KB
testcase_31 AC 472 ms
43,816 KB
testcase_32 AC 463 ms
43,804 KB
testcase_33 AC 480 ms
43,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8-*-
import numpy as np
if __name__ == '__main__':
    n = int(input())
    v = np.array(list(map(int, input().split(" "))))
    a = np.zeros((n+1))
    b = np.zeros((n+1))
    for i in range(n):
        a[i+1] = b[i] + v[i]
        b[i+1] = max(a[i], b[i])
    print(int(max(a[n], b[n])))
0