結果

問題 No.1245 ANDORゲーム(calc)
ユーザー keymoonkeymoon
提出日時 2020-10-02 21:29:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 1,525 bytes
コンパイル時間 1,082 ms
コンパイル使用メモリ 110,112 KB
実行使用メモリ 52,844 KB
最終ジャッジ日時 2024-07-16 04:19:59
合計ジャッジ時間 12,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
27,404 KB
testcase_01 AC 31 ms
27,148 KB
testcase_02 AC 27 ms
27,276 KB
testcase_03 AC 28 ms
27,276 KB
testcase_04 AC 26 ms
25,368 KB
testcase_05 AC 27 ms
25,368 KB
testcase_06 AC 25 ms
25,224 KB
testcase_07 AC 42 ms
26,132 KB
testcase_08 AC 35 ms
27,788 KB
testcase_09 AC 41 ms
27,796 KB
testcase_10 AC 47 ms
28,080 KB
testcase_11 AC 602 ms
50,928 KB
testcase_12 AC 603 ms
52,844 KB
testcase_13 AC 598 ms
48,956 KB
testcase_14 AC 602 ms
48,556 KB
testcase_15 AC 594 ms
50,788 KB
testcase_16 AC 589 ms
48,836 KB
testcase_17 AC 586 ms
46,492 KB
testcase_18 AC 591 ms
47,848 KB
testcase_19 AC 572 ms
46,288 KB
testcase_20 AC 574 ms
50,868 KB
testcase_21 AC 587 ms
50,640 KB
testcase_22 AC 571 ms
46,396 KB
testcase_23 AC 594 ms
48,520 KB
testcase_24 AC 610 ms
50,896 KB
testcase_25 AC 509 ms
44,360 KB
testcase_26 AC 526 ms
44,236 KB
testcase_27 AC 537 ms
47,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        var nq = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var n = nq[0];
        var q = nq[1];
        var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var s = Console.ReadLine();

        var reses = new[] { new long[32], new long[32] };

        for (int type = 0; type <= 1; type++)
        {
            for (int i = 0; i < 32; i++)
            {
                var res = 0L;
                var current = type;
                for (int j = 0; j < n; j++)
                {
                    var bit = (a[j] >> i) & 1;
                    var c = s[j];
                    var next = c == '0' ? (current & bit) : (current | bit);
                    res += Abs(next - current);
                    current = next;
                }
                reses[type][i] = res * (1 << i);
            }
        }
        
        var queries = Console.ReadLine().Split().Select(int.Parse).ToArray();

        foreach (var query in queries)
        {
            var res = 0L;
            for (int i = 0; i < 32; i++)
            {
                res += reses[query >> i & 1][i];
            }
            Console.WriteLine(res);
        }
    }
}
0