結果

問題 No.1863 Xor Sum 2...?
ユーザー kakel-sankakel-san
提出日時 2023-10-09 13:55:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 866 ms
コンパイル使用メモリ 109,864 KB
実行使用メモリ 44,368 KB
最終ジャッジ日時 2024-07-26 18:31:57
合計ジャッジ時間 4,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
27,140 KB
testcase_01 AC 28 ms
25,208 KB
testcase_02 AC 28 ms
25,204 KB
testcase_03 AC 29 ms
27,008 KB
testcase_04 AC 29 ms
25,096 KB
testcase_05 AC 44 ms
26,684 KB
testcase_06 AC 37 ms
26,232 KB
testcase_07 AC 52 ms
27,264 KB
testcase_08 AC 52 ms
27,572 KB
testcase_09 AC 88 ms
40,484 KB
testcase_10 AC 86 ms
44,368 KB
testcase_11 AC 56 ms
30,776 KB
testcase_12 AC 50 ms
27,308 KB
testcase_13 AC 66 ms
31,772 KB
testcase_14 AC 82 ms
40,280 KB
testcase_15 AC 66 ms
29,664 KB
testcase_16 AC 68 ms
34,140 KB
testcase_17 AC 51 ms
30,028 KB
testcase_18 AC 38 ms
24,396 KB
testcase_19 AC 45 ms
26,980 KB
testcase_20 AC 62 ms
30,736 KB
testcase_21 AC 82 ms
41,732 KB
testcase_22 AC 44 ms
27,588 KB
testcase_23 AC 91 ms
41,240 KB
testcase_24 AC 97 ms
39,644 KB
testcase_25 AC 97 ms
44,092 KB
testcase_26 AC 98 ms
44,332 KB
testcase_27 AC 99 ms
42,180 KB
testcase_28 AC 96 ms
44,204 KB
testcase_29 AC 94 ms
42,292 KB
testcase_30 AC 98 ms
42,316 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var b = NList;
        var ans = 0;
        for (var i = 0; i < n; ++i)
        {
            var sum = 0L;
            var xa = 0L;
            var xb = 0L;
            for (var j = i; j < n; ++j)
            {
                sum += a[j];
                xa ^= a[j];
                xb ^= b[j];
                if (sum - xa == xb) ++ans;
                if (sum - xa > 1) break;
            }
        }
        WriteLine(ans);
    }
}
0