結果

問題 No.1245 ANDORゲーム(calc)
ユーザー 👑 rin204rin204
提出日時 2022-07-06 21:36:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-12-23 07:12:00
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 33 ms
52,352 KB
testcase_05 AC 33 ms
52,352 KB
testcase_06 AC 33 ms
51,840 KB
testcase_07 AC 69 ms
76,288 KB
testcase_08 AC 56 ms
68,992 KB
testcase_09 AC 75 ms
76,184 KB
testcase_10 AC 64 ms
76,160 KB
testcase_11 AC 322 ms
92,592 KB
testcase_12 AC 301 ms
92,704 KB
testcase_13 AC 310 ms
92,608 KB
testcase_14 AC 320 ms
92,828 KB
testcase_15 AC 290 ms
92,508 KB
testcase_16 AC 296 ms
92,484 KB
testcase_17 AC 285 ms
92,876 KB
testcase_18 AC 275 ms
92,224 KB
testcase_19 AC 281 ms
92,356 KB
testcase_20 AC 291 ms
92,888 KB
testcase_21 AC 290 ms
92,948 KB
testcase_22 AC 279 ms
92,836 KB
testcase_23 AC 294 ms
92,348 KB
testcase_24 AC 293 ms
92,800 KB
testcase_25 AC 176 ms
94,336 KB
testcase_26 AC 209 ms
93,608 KB
testcase_27 AC 254 ms
92,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
A = list(map(int, input().split()))
S = input()
cnt = [[0] * 2 for _ in range(30)]
for i in range(30):
    for j in range(2):
        if j == 0:
            x = 0
        else:
            x = 1 << i
        for a, s in zip(A, S):
            b = (a >> i & 1) << i
            if s == "0":
                nx = x & b
            else:
                nx = x | b
            cnt[i][j] += abs(x - nx)
            x = nx

T = list(map(int, input().split()))
for t in T:
    ans = 0
    for i in range(30):
        ans += cnt[i][t >> i & 1]
    print(ans)
0