結果

問題 No.808 Kaiten Sushi?
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-06 11:58:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 782 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 107,816 KB
最終ジャッジ日時 2024-07-02 18:52:40
合計ジャッジ時間 7,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,736 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 34 ms
52,736 KB
testcase_07 AC 46 ms
63,872 KB
testcase_08 AC 46 ms
63,488 KB
testcase_09 AC 48 ms
64,512 KB
testcase_10 AC 50 ms
66,048 KB
testcase_11 AC 48 ms
64,128 KB
testcase_12 AC 48 ms
64,128 KB
testcase_13 AC 48 ms
65,280 KB
testcase_14 AC 42 ms
61,696 KB
testcase_15 AC 47 ms
64,768 KB
testcase_16 AC 48 ms
65,152 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 37 ms
57,600 KB
testcase_21 AC 35 ms
58,112 KB
testcase_22 AC 38 ms
58,240 KB
testcase_23 AC 66 ms
89,344 KB
testcase_24 AC 57 ms
83,072 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 106 ms
106,792 KB
testcase_33 AC 85 ms
95,232 KB
testcase_34 AC 87 ms
101,468 KB
testcase_35 AC 87 ms
94,848 KB
testcase_36 AC 77 ms
95,488 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 100 ms
103,256 KB
testcase_40 AC 63 ms
81,280 KB
testcase_41 AC 65 ms
83,200 KB
testcase_42 AC 89 ms
97,664 KB
testcase_43 AC 72 ms
87,808 KB
testcase_44 AC 84 ms
98,816 KB
testcase_45 AC 71 ms
87,680 KB
testcase_46 AC 63 ms
78,336 KB
testcase_47 AC 108 ms
107,816 KB
testcase_48 AC 105 ms
107,228 KB
testcase_49 AC 107 ms
107,356 KB
testcase_50 AC 105 ms
107,808 KB
testcase_51 AC 108 ms
107,484 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 32 ms
51,584 KB
testcase_55 AC 32 ms
51,840 KB
testcase_56 AC 32 ms
52,096 KB
testcase_57 AC 60 ms
85,248 KB
testcase_58 AC 76 ms
98,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def merge(x, y):
    x.reverse()
    y.reverse()
    res = []
    while x and y:
        if x[-1] < y[-1]:
            res.append(x.pop())
        else:
            res.append(~y.pop())
    while x:
        res.append(x.pop())
    while y:
        res.append(~y.pop())
    return res


N, L = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = merge(A, B)

p = 0
D = [-1] * (2 * N)
for i, c in enumerate(C):
    if c >= 0:
        p += 1
    else:
        p -= 1
    D[i] = p

mx = max(D)
mn = min(D)

if mx == 0:
    ans = L * (mx - mn) + B[0]
else:
    D = [d - mn for d in D]
    loop = max(D) - 1
    walk = -1
    for c, d in zip(C, D):
        if c < 0 and d == loop:
            walk = ~c
    ans = L*loop + walk

print(ans)
0