結果

問題 No.2656 XOR Slimes
ユーザー nikoro256nikoro256
提出日時 2024-03-01 22:51:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 66,900 KB
最終ジャッジ日時 2024-09-29 14:41:15
合計ジャッジ時間 11,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,320 KB
testcase_01 AC 36 ms
52,432 KB
testcase_02 AC 36 ms
52,012 KB
testcase_03 AC 35 ms
53,084 KB
testcase_04 AC 35 ms
53,480 KB
testcase_05 AC 37 ms
52,436 KB
testcase_06 AC 38 ms
52,212 KB
testcase_07 AC 37 ms
53,748 KB
testcase_08 AC 128 ms
65,852 KB
testcase_09 AC 127 ms
66,084 KB
testcase_10 AC 124 ms
65,976 KB
testcase_11 AC 232 ms
64,388 KB
testcase_12 AC 234 ms
65,492 KB
testcase_13 AC 231 ms
65,420 KB
testcase_14 AC 127 ms
66,508 KB
testcase_15 AC 127 ms
65,812 KB
testcase_16 AC 130 ms
65,776 KB
testcase_17 AC 127 ms
65,792 KB
testcase_18 AC 127 ms
66,220 KB
testcase_19 AC 132 ms
65,840 KB
testcase_20 AC 131 ms
65,792 KB
testcase_21 AC 232 ms
65,184 KB
testcase_22 AC 127 ms
65,460 KB
testcase_23 AC 234 ms
65,248 KB
testcase_24 AC 129 ms
64,904 KB
testcase_25 AC 228 ms
66,608 KB
testcase_26 AC 229 ms
64,448 KB
testcase_27 AC 126 ms
65,204 KB
testcase_28 AC 235 ms
65,124 KB
testcase_29 AC 129 ms
65,116 KB
testcase_30 AC 230 ms
66,740 KB
testcase_31 AC 231 ms
66,724 KB
testcase_32 AC 126 ms
65,680 KB
testcase_33 AC 235 ms
65,160 KB
testcase_34 AC 239 ms
65,536 KB
testcase_35 AC 124 ms
65,148 KB
testcase_36 AC 130 ms
64,832 KB
testcase_37 AC 132 ms
64,588 KB
testcase_38 AC 234 ms
65,560 KB
testcase_39 AC 235 ms
65,028 KB
testcase_40 AC 132 ms
66,012 KB
testcase_41 AC 134 ms
65,968 KB
testcase_42 AC 237 ms
65,704 KB
testcase_43 AC 235 ms
66,148 KB
testcase_44 AC 240 ms
64,780 KB
testcase_45 AC 230 ms
66,688 KB
testcase_46 AC 234 ms
65,592 KB
testcase_47 AC 231 ms
66,424 KB
testcase_48 AC 130 ms
66,088 KB
testcase_49 AC 127 ms
65,936 KB
testcase_50 AC 230 ms
66,004 KB
testcase_51 AC 233 ms
66,548 KB
testcase_52 AC 128 ms
65,128 KB
testcase_53 AC 125 ms
66,900 KB
testcase_54 AC 128 ms
65,680 KB
testcase_55 AC 124 ms
66,596 KB
testcase_56 AC 128 ms
65,468 KB
testcase_57 AC 127 ms
66,208 KB
testcase_58 AC 235 ms
65,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
# iから開始するときのコスト
dp = [10**10] * (N + 1)
dp[0] = 0
for i in range(N):
    tmp = 0
    for j in range(i, N):
        tmp ^= A[j]
        dp[j + 1] = min(dp[j + 1], dp[i] + (X[j] - X[i]) + tmp)
print(dp[-1])
0