結果

問題 No.45 回転寿司
ユーザー rocoderrocoder
提出日時 2017-07-08 11:50:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 413 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-06 19:39:17
合計ジャッジ時間 2,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 RE -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 30 ms
10,624 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# your code goes here
#ef su(ln,mi,la):
 #   if ln==1:
    #    return V[ln-1]
N=int(input ())
V=[int(i) for i in input(). split ()]
if V[0]>V[1]:
    ma=V[0]
    la=0
else:
    ma=V[1]
    la=1
    mal=V[0]
for i in range(2,N-1):
    #print(ma)
    if la==0:
        ma+=V[i]
        la=1
    else:
        c=mal+V[i]
        if ma>=c:
            la=0
        else:
            mal=ma
            ma=c
print(ma)
0