結果

問題 No.2656 XOR Slimes
ユーザー 👑 rin204rin204
提出日時 2024-03-03 16:25:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 65,472 KB
最終ジャッジ日時 2024-09-29 16:54:06
合計ジャッジ時間 7,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,680 KB
testcase_01 AC 32 ms
52,852 KB
testcase_02 AC 32 ms
53,000 KB
testcase_03 AC 31 ms
53,536 KB
testcase_04 AC 31 ms
52,404 KB
testcase_05 AC 31 ms
53,124 KB
testcase_06 AC 30 ms
53,372 KB
testcase_07 AC 31 ms
53,260 KB
testcase_08 AC 118 ms
65,264 KB
testcase_09 AC 119 ms
64,308 KB
testcase_10 AC 119 ms
64,852 KB
testcase_11 AC 117 ms
65,436 KB
testcase_12 AC 115 ms
64,612 KB
testcase_13 AC 115 ms
65,160 KB
testcase_14 AC 119 ms
64,020 KB
testcase_15 AC 116 ms
64,976 KB
testcase_16 AC 116 ms
65,460 KB
testcase_17 AC 116 ms
64,360 KB
testcase_18 AC 118 ms
63,720 KB
testcase_19 AC 115 ms
64,388 KB
testcase_20 AC 115 ms
63,592 KB
testcase_21 AC 115 ms
64,004 KB
testcase_22 AC 119 ms
64,108 KB
testcase_23 AC 116 ms
63,940 KB
testcase_24 AC 116 ms
65,392 KB
testcase_25 AC 117 ms
64,168 KB
testcase_26 AC 118 ms
65,400 KB
testcase_27 AC 118 ms
65,220 KB
testcase_28 AC 116 ms
64,708 KB
testcase_29 AC 117 ms
64,388 KB
testcase_30 AC 118 ms
64,900 KB
testcase_31 AC 118 ms
63,804 KB
testcase_32 AC 119 ms
65,292 KB
testcase_33 AC 115 ms
64,208 KB
testcase_34 AC 120 ms
65,260 KB
testcase_35 AC 117 ms
63,768 KB
testcase_36 AC 116 ms
64,576 KB
testcase_37 AC 117 ms
64,988 KB
testcase_38 AC 122 ms
64,984 KB
testcase_39 AC 117 ms
64,248 KB
testcase_40 AC 118 ms
64,244 KB
testcase_41 AC 117 ms
64,056 KB
testcase_42 AC 119 ms
64,632 KB
testcase_43 AC 115 ms
64,440 KB
testcase_44 AC 121 ms
64,260 KB
testcase_45 AC 119 ms
64,640 KB
testcase_46 AC 118 ms
64,780 KB
testcase_47 AC 116 ms
64,528 KB
testcase_48 AC 116 ms
65,280 KB
testcase_49 AC 120 ms
64,312 KB
testcase_50 AC 120 ms
64,536 KB
testcase_51 AC 118 ms
65,472 KB
testcase_52 AC 116 ms
64,204 KB
testcase_53 AC 117 ms
64,072 KB
testcase_54 AC 116 ms
64,232 KB
testcase_55 AC 115 ms
64,196 KB
testcase_56 AC 116 ms
64,120 KB
testcase_57 AC 117 ms
65,216 KB
testcase_58 AC 116 ms
64,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(1, n + 1):
    x = 0
    for j in range(i - 1, -1, -1):
        x ^= A[j]
        dp[i] = min(dp[i], dp[j] + x + X[i - 1] - X[j])

print(dp[-1])
0