結果

問題 No.808 Kaiten Sushi?
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-06 11:33:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 680 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 107,848 KB
最終ジャッジ日時 2024-07-02 18:29:24
合計ジャッジ時間 6,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,756 KB
testcase_01 AC 34 ms
54,000 KB
testcase_02 AC 32 ms
53,020 KB
testcase_03 AC 33 ms
53,544 KB
testcase_04 AC 32 ms
52,880 KB
testcase_05 AC 35 ms
52,864 KB
testcase_06 AC 32 ms
53,316 KB
testcase_07 AC 48 ms
63,628 KB
testcase_08 AC 48 ms
64,124 KB
testcase_09 AC 48 ms
66,032 KB
testcase_10 AC 50 ms
66,460 KB
testcase_11 AC 46 ms
64,948 KB
testcase_12 AC 45 ms
65,240 KB
testcase_13 AC 47 ms
65,816 KB
testcase_14 AC 41 ms
62,412 KB
testcase_15 AC 48 ms
65,496 KB
testcase_16 AC 49 ms
65,936 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
58,728 KB
testcase_21 AC 35 ms
53,308 KB
testcase_22 AC 40 ms
59,168 KB
testcase_23 AC 69 ms
88,748 KB
testcase_24 AC 65 ms
83,908 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 105 ms
107,124 KB
testcase_33 AC 78 ms
94,892 KB
testcase_34 AC 83 ms
101,476 KB
testcase_35 AC 89 ms
94,864 KB
testcase_36 AC 79 ms
95,540 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 97 ms
103,652 KB
testcase_40 AC 63 ms
81,588 KB
testcase_41 AC 66 ms
82,484 KB
testcase_42 AC 88 ms
97,544 KB
testcase_43 AC 72 ms
88,728 KB
testcase_44 AC 87 ms
98,272 KB
testcase_45 AC 73 ms
87,928 KB
testcase_46 AC 58 ms
77,924 KB
testcase_47 AC 105 ms
107,196 KB
testcase_48 AC 105 ms
107,848 KB
testcase_49 AC 103 ms
107,684 KB
testcase_50 AC 103 ms
107,460 KB
testcase_51 AC 106 ms
107,456 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 33 ms
52,396 KB
testcase_55 AC 33 ms
52,804 KB
testcase_56 AC 33 ms
52,528 KB
testcase_57 AC 61 ms
86,176 KB
testcase_58 AC 77 ms
98,336 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

m = min(D)
D = [d - m 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
print(L*loop + walk)
0