結果

問題 No.2656 XOR Slimes
ユーザー detteiuudetteiuu
提出日時 2024-08-04 22:37:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 69,472 KB
最終ジャッジ日時 2024-08-04 22:37:55
合計ジャッジ時間 12,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,856 KB
testcase_01 AC 36 ms
52,068 KB
testcase_02 AC 36 ms
52,340 KB
testcase_03 AC 37 ms
52,860 KB
testcase_04 AC 37 ms
52,244 KB
testcase_05 AC 37 ms
52,252 KB
testcase_06 AC 37 ms
51,876 KB
testcase_07 AC 35 ms
52,808 KB
testcase_08 AC 164 ms
68,312 KB
testcase_09 AC 156 ms
67,452 KB
testcase_10 AC 160 ms
68,884 KB
testcase_11 AC 161 ms
69,100 KB
testcase_12 AC 160 ms
68,552 KB
testcase_13 AC 160 ms
68,296 KB
testcase_14 AC 160 ms
68,092 KB
testcase_15 AC 163 ms
69,028 KB
testcase_16 AC 162 ms
67,856 KB
testcase_17 AC 288 ms
68,544 KB
testcase_18 AC 287 ms
67,952 KB
testcase_19 AC 162 ms
68,444 KB
testcase_20 AC 161 ms
67,492 KB
testcase_21 AC 163 ms
68,408 KB
testcase_22 AC 160 ms
67,300 KB
testcase_23 AC 158 ms
67,820 KB
testcase_24 AC 164 ms
68,436 KB
testcase_25 AC 159 ms
67,044 KB
testcase_26 AC 288 ms
68,536 KB
testcase_27 AC 167 ms
68,652 KB
testcase_28 AC 289 ms
67,924 KB
testcase_29 AC 161 ms
67,168 KB
testcase_30 AC 159 ms
68,668 KB
testcase_31 AC 160 ms
68,916 KB
testcase_32 AC 165 ms
68,620 KB
testcase_33 AC 164 ms
69,472 KB
testcase_34 AC 156 ms
67,172 KB
testcase_35 AC 156 ms
68,612 KB
testcase_36 AC 159 ms
68,036 KB
testcase_37 AC 157 ms
68,284 KB
testcase_38 AC 159 ms
67,500 KB
testcase_39 AC 160 ms
68,496 KB
testcase_40 AC 300 ms
68,112 KB
testcase_41 AC 159 ms
68,892 KB
testcase_42 AC 154 ms
68,692 KB
testcase_43 AC 155 ms
67,820 KB
testcase_44 AC 283 ms
68,612 KB
testcase_45 AC 161 ms
67,620 KB
testcase_46 AC 167 ms
68,424 KB
testcase_47 AC 282 ms
69,060 KB
testcase_48 AC 157 ms
68,380 KB
testcase_49 AC 158 ms
69,076 KB
testcase_50 AC 286 ms
69,232 KB
testcase_51 AC 165 ms
67,812 KB
testcase_52 AC 288 ms
68,540 KB
testcase_53 AC 158 ms
67,952 KB
testcase_54 AC 159 ms
68,172 KB
testcase_55 AC 157 ms
68,608 KB
testcase_56 AC 158 ms
67,508 KB
testcase_57 AC 158 ms
68,500 KB
testcase_58 AC 162 ms
68,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

cumXOR = [0]
for i in range(N):
    cumXOR.append(cumXOR[-1]^A[i])

def rangeXOR(l, r):
    return cumXOR[r+1]^cumXOR[l]

INF = 10**18
dp = [INF]*(N+1)
dp[0] = 0
for i in range(N):
    for j in range(i+1):
        left = dp[j]
        if j < i:
            cost = X[i]-X[j]
        else:
            cost = 0
        xor = rangeXOR(j, i)
        dp[i+1] = min(dp[i+1], left+cost+xor)

print(dp[-1])
0