結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 34 ms
52,364 KB
testcase_07 AC 72 ms
76,288 KB
testcase_08 AC 55 ms
69,120 KB
testcase_09 AC 74 ms
76,192 KB
testcase_10 AC 68 ms
76,288 KB
testcase_11 AC 329 ms
92,840 KB
testcase_12 AC 303 ms
92,720 KB
testcase_13 AC 313 ms
92,972 KB
testcase_14 AC 336 ms
92,992 KB
testcase_15 AC 300 ms
92,904 KB
testcase_16 AC 298 ms
92,476 KB
testcase_17 AC 296 ms
92,612 KB
testcase_18 AC 286 ms
92,744 KB
testcase_19 AC 284 ms
92,476 KB
testcase_20 AC 304 ms
93,180 KB
testcase_21 AC 292 ms
92,656 KB
testcase_22 AC 292 ms
92,976 KB
testcase_23 AC 305 ms
92,980 KB
testcase_24 AC 308 ms
92,428 KB
testcase_25 AC 178 ms
94,208 KB
testcase_26 AC 221 ms
93,092 KB
testcase_27 AC 264 ms
92,924 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