結果

問題 No.2656 XOR Slimes
ユーザー tipstar0125tipstar0125
提出日時 2024-03-04 17:51:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 67,396 KB
最終ジャッジ日時 2024-09-29 17:27:42
合計ジャッジ時間 9,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,688 KB
testcase_01 AC 33 ms
52,432 KB
testcase_02 AC 32 ms
52,840 KB
testcase_03 AC 32 ms
52,208 KB
testcase_04 AC 32 ms
52,716 KB
testcase_05 AC 32 ms
52,696 KB
testcase_06 AC 32 ms
53,048 KB
testcase_07 AC 32 ms
53,276 KB
testcase_08 AC 132 ms
65,488 KB
testcase_09 AC 135 ms
65,600 KB
testcase_10 AC 131 ms
66,492 KB
testcase_11 AC 131 ms
65,428 KB
testcase_12 AC 131 ms
65,300 KB
testcase_13 AC 131 ms
65,280 KB
testcase_14 AC 130 ms
64,472 KB
testcase_15 AC 132 ms
65,288 KB
testcase_16 AC 136 ms
66,108 KB
testcase_17 AC 216 ms
65,896 KB
testcase_18 AC 219 ms
65,068 KB
testcase_19 AC 134 ms
65,464 KB
testcase_20 AC 133 ms
65,648 KB
testcase_21 AC 134 ms
65,280 KB
testcase_22 AC 136 ms
65,852 KB
testcase_23 AC 134 ms
65,164 KB
testcase_24 AC 132 ms
65,252 KB
testcase_25 AC 132 ms
66,428 KB
testcase_26 AC 221 ms
66,172 KB
testcase_27 AC 131 ms
64,788 KB
testcase_28 AC 220 ms
66,224 KB
testcase_29 AC 134 ms
65,840 KB
testcase_30 AC 131 ms
65,096 KB
testcase_31 AC 133 ms
65,964 KB
testcase_32 AC 134 ms
65,164 KB
testcase_33 AC 132 ms
65,316 KB
testcase_34 AC 134 ms
65,948 KB
testcase_35 AC 134 ms
64,536 KB
testcase_36 AC 129 ms
66,484 KB
testcase_37 AC 134 ms
65,500 KB
testcase_38 AC 133 ms
66,088 KB
testcase_39 AC 134 ms
65,476 KB
testcase_40 AC 218 ms
65,408 KB
testcase_41 AC 139 ms
66,036 KB
testcase_42 AC 132 ms
65,608 KB
testcase_43 AC 132 ms
65,092 KB
testcase_44 AC 219 ms
64,956 KB
testcase_45 AC 136 ms
64,908 KB
testcase_46 AC 132 ms
65,840 KB
testcase_47 AC 222 ms
66,340 KB
testcase_48 AC 132 ms
65,844 KB
testcase_49 AC 131 ms
66,700 KB
testcase_50 AC 219 ms
66,220 KB
testcase_51 AC 133 ms
66,592 KB
testcase_52 AC 221 ms
65,040 KB
testcase_53 AC 129 ms
65,284 KB
testcase_54 AC 132 ms
66,344 KB
testcase_55 AC 133 ms
66,152 KB
testcase_56 AC 133 ms
66,288 KB
testcase_57 AC 131 ms
65,732 KB
testcase_58 AC 133 ms
67,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S=[0 for _ in range(N+1)]
for i in range(1,N+1):
    S[i]=S[i-1]^A[i-1]

INF=int(1e18)
dp=[INF for _ in range(N+1)]
dp[0]=0

for i in range(1,N+1):
    for j in range(i):
        dp[i]=min(dp[i],dp[j]+X[i-1]-X[j]+(S[i]^S[j]))
print(dp[-1])
0