結果

問題 No.2656 XOR Slimes
ユーザー chineristACchineristAC
提出日時 2024-03-01 21:50:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,908 KB
最終ジャッジ日時 2024-09-29 13:48:20
合計ジャッジ時間 11,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,200 KB
testcase_01 AC 41 ms
56,420 KB
testcase_02 AC 41 ms
57,144 KB
testcase_03 AC 42 ms
56,628 KB
testcase_04 AC 41 ms
56,060 KB
testcase_05 AC 40 ms
55,980 KB
testcase_06 AC 40 ms
56,348 KB
testcase_07 AC 40 ms
56,372 KB
testcase_08 AC 143 ms
70,964 KB
testcase_09 AC 145 ms
70,488 KB
testcase_10 AC 141 ms
70,884 KB
testcase_11 AC 223 ms
70,460 KB
testcase_12 AC 233 ms
71,076 KB
testcase_13 AC 226 ms
70,652 KB
testcase_14 AC 151 ms
70,804 KB
testcase_15 AC 150 ms
69,316 KB
testcase_16 AC 150 ms
71,172 KB
testcase_17 AC 147 ms
70,344 KB
testcase_18 AC 153 ms
70,568 KB
testcase_19 AC 152 ms
70,764 KB
testcase_20 AC 147 ms
70,944 KB
testcase_21 AC 226 ms
70,152 KB
testcase_22 AC 149 ms
70,388 KB
testcase_23 AC 249 ms
70,200 KB
testcase_24 AC 147 ms
70,104 KB
testcase_25 AC 229 ms
71,112 KB
testcase_26 AC 225 ms
69,960 KB
testcase_27 AC 145 ms
70,632 KB
testcase_28 AC 221 ms
71,884 KB
testcase_29 AC 145 ms
70,456 KB
testcase_30 AC 217 ms
71,368 KB
testcase_31 AC 223 ms
70,020 KB
testcase_32 AC 143 ms
70,276 KB
testcase_33 AC 218 ms
70,948 KB
testcase_34 AC 220 ms
71,212 KB
testcase_35 AC 140 ms
70,428 KB
testcase_36 AC 142 ms
71,364 KB
testcase_37 AC 141 ms
70,856 KB
testcase_38 AC 216 ms
71,640 KB
testcase_39 AC 223 ms
71,004 KB
testcase_40 AC 144 ms
71,808 KB
testcase_41 AC 142 ms
71,040 KB
testcase_42 AC 221 ms
69,916 KB
testcase_43 AC 226 ms
70,392 KB
testcase_44 AC 252 ms
70,696 KB
testcase_45 AC 219 ms
71,132 KB
testcase_46 AC 220 ms
71,136 KB
testcase_47 AC 218 ms
71,156 KB
testcase_48 AC 143 ms
71,244 KB
testcase_49 AC 144 ms
70,984 KB
testcase_50 AC 219 ms
71,908 KB
testcase_51 AC 218 ms
71,688 KB
testcase_52 AC 144 ms
70,688 KB
testcase_53 AC 141 ms
70,852 KB
testcase_54 AC 146 ms
70,632 KB
testcase_55 AC 143 ms
70,212 KB
testcase_56 AC 141 ms
71,180 KB
testcase_57 AC 143 ms
70,416 KB
testcase_58 AC 223 ms
71,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())



N = int(input())
X = li()
A = li()

INF = 3 * 10**9
dp = [INF] * (N+1)
dp[0] = 0
for l in range(N):
    tmp_xor = A[l]
    for r in range(l+1,N+1):
        dp[r] = min(dp[r],dp[l]+X[r-1]-X[l]+tmp_xor)
        if r!=N:
            tmp_xor ^= A[r]

print(dp[-1])

0