結果

問題 No.814 ジジ抜き
ユーザー Tomohiko HasegawaTomohiko Hasegawa
提出日時 2019-04-14 00:37:42
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,913 ms / 3,000 ms
コード長 2,441 bytes
コンパイル時間 1,091 ms
コンパイル使用メモリ 106,368 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-09-15 11:28:26
合計ジャッジ時間 32,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,792 KB
testcase_01 AC 25 ms
17,792 KB
testcase_02 AC 25 ms
17,792 KB
testcase_03 AC 48 ms
18,944 KB
testcase_04 AC 1,423 ms
22,016 KB
testcase_05 AC 1,429 ms
21,888 KB
testcase_06 AC 1,913 ms
21,888 KB
testcase_07 AC 934 ms
22,016 KB
testcase_08 AC 1,828 ms
22,016 KB
testcase_09 AC 1,341 ms
21,888 KB
testcase_10 AC 1,810 ms
21,760 KB
testcase_11 AC 1,882 ms
22,144 KB
testcase_12 AC 879 ms
22,144 KB
testcase_13 AC 920 ms
21,888 KB
testcase_14 AC 1,426 ms
22,016 KB
testcase_15 AC 699 ms
21,760 KB
testcase_16 AC 682 ms
22,016 KB
testcase_17 AC 1,428 ms
21,888 KB
testcase_18 AC 1,261 ms
21,888 KB
testcase_19 AC 1,774 ms
21,888 KB
testcase_20 AC 988 ms
21,888 KB
testcase_21 AC 1,046 ms
22,016 KB
testcase_22 AC 1,565 ms
21,888 KB
testcase_23 AC 770 ms
21,888 KB
testcase_24 AC 1,401 ms
21,888 KB
testcase_25 AC 1,100 ms
21,760 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.Generic;
using System.Linq;
using System.Text;
using static System.Console;
using static System.Math;

namespace AtTest.yukicoder
{
    class _814
    {
        static void Main(string[] args)
        {
            Method(args);
        }

        static void Method(string[] args)
        {
            int n = ReadInt();
            long res = 0;
            for(int i = 0; i < n; i++)
            {
                long[] kld = ReadLongs();
                long k = kld[0];
                long l = kld[1];
                int d = (int)kld[2];
                long xor = 0;
                long one = 1;
                for (int j = 0; j < d; j++)
                {
                    if ((l & (one << j)) > 0)
                    {
                        if (k % 2 == 1) xor += (one << j);
                    }
                }
                long unused = (l >> d) - 1;
                long shift = (l >> d) + k - 1;
                //WriteLine(one << 62);
                for (int j = d; j < 62; j++)
                {
                    long div = (one << (j - d + 1));
                    long cnt = (shift / div) * div / 2;
                    if (shift % div >= div / 2) {
                        cnt += shift % div - div / 2 + 1;
                    }
                    if (unused >= 0)
                    {
                        cnt -= (unused / div) * div / 2;
                        if (unused % div >= div / 2)
                        {
                            cnt -= unused % div - div / 2 + 1;
                        }
                    }
                    if (cnt%2>0) xor += (one<<j);
                }
                res ^=xor;
            }
            WriteLine(res);
        }

        private static string Read() { return ReadLine(); }
        private static char[] ReadChars() { return Array.ConvertAll(Read().Split(), a => a[0]); }
        private static int ReadInt() { return int.Parse(Read()); }
        private static long ReadLong() { return long.Parse(Read()); }
        private static double ReadDouble() { return double.Parse(Read()); }
        private static int[] ReadInts() { return Array.ConvertAll(Read().Split(), int.Parse); }
        private static long[] ReadLongs() { return Array.ConvertAll(Read().Split(), long.Parse); }
        private static double[] ReadDoubles() { return Array.ConvertAll(Read().Split(), double.Parse); }
    }
}
0