結果

問題 No.2709 1975 Powers
ユーザー bluemeganebluemegane
提出日時 2024-04-04 16:06:43
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 1,535 bytes
コンパイル時間 7,846 ms
コンパイル使用メモリ 167,856 KB
実行使用メモリ 248,148 KB
最終ジャッジ日時 2024-10-01 00:26:11
合計ジャッジ時間 40,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
91,844 KB
testcase_01 AC 177 ms
91,740 KB
testcase_02 AC 199 ms
92,396 KB
testcase_03 AC 1,422 ms
92,204 KB
testcase_04 TLE -
testcase_05 AC 1,450 ms
92,064 KB
testcase_06 AC 558 ms
92,076 KB
testcase_07 AC 170 ms
91,752 KB
testcase_08 AC 535 ms
92,232 KB
testcase_09 AC 1,447 ms
92,200 KB
testcase_10 AC 166 ms
91,756 KB
testcase_11 AC 201 ms
92,144 KB
testcase_12 AC 292 ms
92,140 KB
testcase_13 AC 1,723 ms
92,068 KB
testcase_14 AC 351 ms
92,136 KB
testcase_15 AC 376 ms
92,140 KB
testcase_16 AC 1,174 ms
92,192 KB
testcase_17 AC 174 ms
92,240 KB
testcase_18 AC 290 ms
92,520 KB
testcase_19 TLE -
testcase_20 AC 192 ms
92,008 KB
testcase_21 AC 581 ms
91,876 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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]]) % p;
                        ww += d[2, a[k]];
                        ww %= p;
                        ww += d[3, a[L]];
                        ww %= p;
                        if (ww == q) c++;
                    }
                }
            }
        }
        Console.WriteLine(c);
    }
}
0