結果

問題 No.2260 Adic Sum
ユーザー kakel-sankakel-san
提出日時 2023-06-29 21:56:40
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 1,026 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 110,976 KB
実行使用メモリ 55,652 KB
最終ジャッジ日時 2024-07-06 11:58:20
合計ジャッジ時間 6,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,548 KB
testcase_01 AC 26 ms
25,132 KB
testcase_02 AC 29 ms
29,608 KB
testcase_03 AC 29 ms
23,600 KB
testcase_04 AC 27 ms
25,260 KB
testcase_05 AC 31 ms
27,432 KB
testcase_06 AC 29 ms
23,348 KB
testcase_07 AC 30 ms
25,416 KB
testcase_08 AC 31 ms
23,732 KB
testcase_09 AC 31 ms
25,904 KB
testcase_10 AC 30 ms
25,800 KB
testcase_11 AC 33 ms
25,724 KB
testcase_12 AC 31 ms
25,700 KB
testcase_13 AC 34 ms
26,164 KB
testcase_14 AC 51 ms
32,568 KB
testcase_15 AC 59 ms
33,748 KB
testcase_16 AC 48 ms
28,872 KB
testcase_17 AC 63 ms
34,072 KB
testcase_18 AC 243 ms
46,792 KB
testcase_19 AC 269 ms
55,652 KB
testcase_20 AC 193 ms
53,072 KB
testcase_21 AC 188 ms
53,000 KB
testcase_22 AC 167 ms
52,332 KB
testcase_23 AC 146 ms
51,600 KB
testcase_24 AC 260 ms
49,064 KB
testcase_25 AC 78 ms
41,812 KB
testcase_26 AC 80 ms
40,580 KB
testcase_27 AC 80 ms
42,156 KB
testcase_28 AC 77 ms
41,932 KB
testcase_29 AC 79 ms
40,844 KB
testcase_30 AC 89 ms
38,460 KB
testcase_31 AC 322 ms
43,928 KB
testcase_32 AC 314 ms
48,092 KB
testcase_33 AC 81 ms
38,596 KB
testcase_34 AC 120 ms
51,752 KB
testcase_35 AC 365 ms
52,072 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 int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, p) = (c[0], c[1]);
        var a = NList;
        var max = a.Max();
        var div = (long)p;
        var ans = 0L;
        while (true)
        {
            if (div >= max) break;
            var dic = new Dictionary<long, int>();
            foreach (var ai in a)
            {
                var am = ai % div;
                if (dic.ContainsKey(am))
                {
                    ans += dic[am];
                    ++dic[am];
                }
                else dic[am] = 1;
            }
            div *= p;
        }
        WriteLine(ans);
    }
}
0