結果

問題 No.2656 XOR Slimes
ユーザー titiatitia
提出日時 2024-03-05 03:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 68,288 KB
最終ジャッジ日時 2024-09-29 17:47:23
合計ジャッジ時間 13,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,940 KB
testcase_01 AC 38 ms
52,620 KB
testcase_02 AC 36 ms
52,696 KB
testcase_03 AC 36 ms
53,812 KB
testcase_04 AC 36 ms
52,968 KB
testcase_05 AC 36 ms
52,168 KB
testcase_06 AC 36 ms
51,884 KB
testcase_07 AC 38 ms
52,356 KB
testcase_08 AC 154 ms
66,028 KB
testcase_09 AC 265 ms
65,908 KB
testcase_10 AC 265 ms
67,796 KB
testcase_11 AC 264 ms
66,208 KB
testcase_12 AC 153 ms
65,896 KB
testcase_13 AC 267 ms
66,668 KB
testcase_14 AC 153 ms
66,140 KB
testcase_15 AC 153 ms
65,784 KB
testcase_16 AC 157 ms
66,096 KB
testcase_17 AC 267 ms
66,600 KB
testcase_18 AC 264 ms
66,548 KB
testcase_19 AC 267 ms
65,424 KB
testcase_20 AC 154 ms
66,864 KB
testcase_21 AC 156 ms
66,024 KB
testcase_22 AC 260 ms
66,112 KB
testcase_23 AC 260 ms
66,236 KB
testcase_24 AC 259 ms
66,868 KB
testcase_25 AC 157 ms
67,424 KB
testcase_26 AC 265 ms
66,852 KB
testcase_27 AC 157 ms
67,048 KB
testcase_28 AC 260 ms
65,828 KB
testcase_29 AC 153 ms
66,436 KB
testcase_30 AC 262 ms
66,272 KB
testcase_31 AC 154 ms
66,920 KB
testcase_32 AC 264 ms
66,568 KB
testcase_33 AC 260 ms
66,872 KB
testcase_34 AC 260 ms
66,720 KB
testcase_35 AC 259 ms
66,592 KB
testcase_36 AC 155 ms
66,540 KB
testcase_37 AC 155 ms
66,352 KB
testcase_38 AC 264 ms
68,288 KB
testcase_39 AC 254 ms
66,328 KB
testcase_40 AC 151 ms
67,208 KB
testcase_41 AC 155 ms
67,412 KB
testcase_42 AC 152 ms
66,892 KB
testcase_43 AC 263 ms
66,036 KB
testcase_44 AC 262 ms
66,360 KB
testcase_45 AC 264 ms
67,364 KB
testcase_46 AC 265 ms
66,560 KB
testcase_47 AC 154 ms
66,932 KB
testcase_48 AC 260 ms
67,108 KB
testcase_49 AC 153 ms
67,312 KB
testcase_50 AC 263 ms
66,292 KB
testcase_51 AC 259 ms
66,488 KB
testcase_52 AC 155 ms
65,968 KB
testcase_53 AC 153 ms
66,612 KB
testcase_54 AC 257 ms
66,496 KB
testcase_55 AC 151 ms
66,524 KB
testcase_56 AC 151 ms
66,012 KB
testcase_57 AC 150 ms
67,260 KB
testcase_58 AC 258 ms
66,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

DP=[1<<60]*(N+1)
DP[0]=0

for i in range(N):
    #print(DP)
    now=A[i]
    DIS=0
    DP[i+1]=min(DP[i+1],DP[i]+now+DIS)
    for j in range(i+1,N):
        now^=A[j]
        DIS+=X[j]-X[j-1]

        DP[j+1]=min(DP[j+1],DP[i]+now+DIS)

print(DP[-1])
0