結果

問題 No.2165 Let's Play Nim!
ユーザー kakel-sankakel-san
提出日時 2023-09-18 23:42:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 1,521 bytes
コンパイル時間 3,706 ms
コンパイル使用メモリ 107,136 KB
実行使用メモリ 38,480 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-07-05 12:43:50
合計ジャッジ時間 27,701 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
35,672 KB
testcase_01 AC 184 ms
37,712 KB
testcase_02 AC 197 ms
37,840 KB
testcase_03 AC 136 ms
37,072 KB
testcase_04 AC 52 ms
35,664 KB
testcase_05 AC 60 ms
35,408 KB
testcase_06 AC 58 ms
35,920 KB
testcase_07 AC 58 ms
35,920 KB
testcase_08 AC 149 ms
36,944 KB
testcase_09 AC 54 ms
35,664 KB
testcase_10 AC 62 ms
36,040 KB
testcase_11 AC 194 ms
37,856 KB
testcase_12 AC 172 ms
37,344 KB
testcase_13 AC 52 ms
35,680 KB
testcase_14 AC 58 ms
35,808 KB
testcase_15 AC 54 ms
35,808 KB
testcase_16 AC 165 ms
37,584 KB
testcase_17 AC 101 ms
36,432 KB
testcase_18 AC 266 ms
38,480 KB
testcase_19 AC 53 ms
35,024 KB
testcase_20 AC 57 ms
35,536 KB
testcase_21 AC 90 ms
36,192 KB
testcase_22 AC 80 ms
36,192 KB
testcase_23 AC 77 ms
36,664 KB
testcase_24 AC 73 ms
36,192 KB
testcase_25 AC 124 ms
36,712 KB
testcase_26 AC 215 ms
37,472 KB
testcase_27 AC 82 ms
36,192 KB
testcase_28 AC 113 ms
37,344 KB
testcase_29 AC 53 ms
35,800 KB
testcase_30 AC 51 ms
35,544 KB
testcase_31 AC 52 ms
35,800 KB
testcase_32 AC 132 ms
36,824 KB
evil_2_big_1.txt TLE -
evil_2_big_2.txt TLE -
evil_2_big_3.txt TLE -
evil_big_1.txt TLE -
evil_big_2.txt TLE -
evil_big_3.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var xor = a.Aggregate((x, y) => x ^ y);
        WriteLine(xor == 0 ? 0 : 1);
        while (true)
        {
            if (xor == 0)
            {
                var c = NList;
                var preva = a[c[0] - 1];
                a[c[0] - 1] -= c[1];
                xor ^= preva ^ a[c[0] - 1];
                if (NN != 0) return;
            }
            else
            {
                for (var i = 0; i < n; ++i)
                {
                    var xb = Bits(xor);
                    if (xb <= Bits(a[i]))
                    {
                        var k = a[i] - (xor ^ a[i]);
                        if (k < 0) continue;
                        WriteLine($"{i + 1} {k}");
                        xor ^= a[i] ^ (a[i] - k);
                        a[i] -= k;
                        if (NN != 0) return;
                        break;
                    }
                }
            }
        }
    }
    static int Bits(int a)
    {
        var ans = 0;
        while (a > 0)
        {
            ++ans;
            a >>= 1;
        }
        return ans;
    }
}
0