結果

問題 No.2709 1975 Powers
ユーザー bluemeganebluemegane
提出日時 2024-04-04 16:09:56
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,413 ms / 2,000 ms
コード長 1,410 bytes
コンパイル時間 7,844 ms
コンパイル使用メモリ 166,636 KB
実行使用メモリ 250,180 KB
最終ジャッジ日時 2024-10-01 00:26:40
合計ジャッジ時間 26,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
91,876 KB
testcase_01 AC 179 ms
92,128 KB
testcase_02 AC 188 ms
92,272 KB
testcase_03 AC 770 ms
92,052 KB
testcase_04 AC 1,186 ms
92,452 KB
testcase_05 AC 859 ms
92,072 KB
testcase_06 AC 401 ms
92,076 KB
testcase_07 AC 180 ms
91,748 KB
testcase_08 AC 365 ms
91,876 KB
testcase_09 AC 845 ms
92,324 KB
testcase_10 AC 182 ms
91,500 KB
testcase_11 AC 199 ms
92,012 KB
testcase_12 AC 228 ms
91,884 KB
testcase_13 AC 887 ms
91,812 KB
testcase_14 AC 274 ms
92,012 KB
testcase_15 AC 288 ms
92,136 KB
testcase_16 AC 717 ms
92,072 KB
testcase_17 AC 183 ms
91,860 KB
testcase_18 AC 247 ms
92,140 KB
testcase_19 AC 1,151 ms
92,068 KB
testcase_20 AC 187 ms
92,012 KB
testcase_21 AC 358 ms
92,388 KB
testcase_22 AC 1,404 ms
92,196 KB
testcase_23 AC 1,413 ms
92,200 KB
testcase_24 AC 1,408 ms
92,068 KB
testcase_25 AC 1,407 ms
94,248 KB
testcase_26 AC 1,405 ms
250,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var p = int.Parse(line[1]);
        var q = int.Parse(line[2]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, p, q, a);
    }
    static long[,] makeArray(int p)
    {
        var x = new int[] { 10, 9, 7, 5 };
        var res = new long[4, 2000001];
        for (int i = 0; i < 4; i++) res[i, 0] = 1L;
        for (int i = 1; i <= 2000000; i++)
        {
            for (int j = 0; j < 4; j++)
            {
                res[j, i] = res[j, i - 1] * x[j];
                res[j, i] %= p;
            }
        }
        return res;
    }
    static void getAns(int n, int p, int q, int[] a)
    {
        var d = makeArray(p);
        Array.Sort(a);
        var c = 0;
        for (int i = 0; i < n - 3; i++)
        {
            for (int j = i + 1; j < n - 2; j++)
            {
                for (int k = j + 1; k < n - 1; k++)
                {
                    for (int L = k + 1; L < n; L++)
                    {
                        var ww = (d[0, a[i]] + d[1, a[j]] + d[2, a[k]] + d[3, a[L]]) % p;
                        if (ww == q) c++;
                    }
                }
            }
        }
        Console.WriteLine(c);
    }
}
0