結果

問題 No.45 回転寿司
ユーザー yuuki1036yuuki1036
提出日時 2018-11-02 11:06:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 517 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,536 KB
最終ジャッジ日時 2024-11-20 12:25:24
合計ジャッジ時間 103,807 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,535 ms
27,264 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 75 ms
30,080 KB
testcase_06 AC 4,666 ms
33,536 KB
testcase_07 TLE -
testcase_08 AC 740 ms
28,032 KB
testcase_09 TLE -
testcase_10 AC 2,829 ms
19,496 KB
testcase_11 AC 503 ms
27,136 KB
testcase_12 TLE -
testcase_13 AC 57 ms
10,752 KB
testcase_14 AC 34 ms
10,496 KB
testcase_15 AC 3,623 ms
12,928 KB
testcase_16 AC 1,027 ms
11,520 KB
testcase_17 AC 2,524 ms
12,416 KB
testcase_18 AC 1,135 ms
11,264 KB
testcase_19 TLE -
testcase_20 AC 34 ms
10,624 KB
testcase_21 AC 53 ms
10,624 KB
testcase_22 AC 25 ms
10,624 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 25 ms
10,496 KB
testcase_25 AC 25 ms
10,496 KB
testcase_26 AC 3,356 ms
13,056 KB
testcase_27 TLE -
testcase_28 AC 4,016 ms
13,568 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 26 ms
10,880 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
sushi = [ int(i) for i in input().split() ]
sushi.insert(0,0)

res = [0] * (N + 1)
q = deque([])

res[0] = 0
q.append(0)
taboo = False

while q:
    pos = q.popleft()
    
    for next_pos in range(pos+1,N+1):
        if taboo:
            if next_pos == pos + 1:
                continue
        if res[next_pos] < res[pos] + sushi[next_pos]:
            q.append(next_pos)
            res[next_pos] = res[pos] + sushi[next_pos]

    taboo = True
    
print(max(res))
0