結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー kakel-sankakel-san
提出日時 2024-08-07 23:13:57
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 1,281 bytes
コンパイル時間 10,254 ms
コンパイル使用メモリ 166,112 KB
実行使用メモリ 240,900 KB
最終ジャッジ日時 2024-08-07 23:14:42
合計ジャッジ時間 44,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,076 KB
testcase_01 AC 55 ms
29,824 KB
testcase_02 AC 55 ms
30,080 KB
testcase_03 AC 366 ms
64,640 KB
testcase_04 AC 399 ms
64,768 KB
testcase_05 AC 371 ms
64,116 KB
testcase_06 AC 386 ms
64,252 KB
testcase_07 AC 326 ms
74,220 KB
testcase_08 AC 307 ms
74,112 KB
testcase_09 AC 170 ms
44,160 KB
testcase_10 AC 159 ms
44,160 KB
testcase_11 AC 345 ms
79,616 KB
testcase_12 AC 422 ms
79,744 KB
testcase_13 AC 240 ms
57,216 KB
testcase_14 AC 255 ms
57,344 KB
testcase_15 AC 224 ms
63,872 KB
testcase_16 AC 223 ms
63,828 KB
testcase_17 AC 367 ms
81,792 KB
testcase_18 AC 440 ms
81,664 KB
testcase_19 AC 328 ms
75,648 KB
testcase_20 AC 343 ms
75,648 KB
testcase_21 AC 468 ms
78,956 KB
testcase_22 AC 478 ms
78,708 KB
testcase_23 AC 260 ms
59,008 KB
testcase_24 AC 256 ms
58,752 KB
testcase_25 AC 95 ms
37,100 KB
testcase_26 AC 93 ms
37,120 KB
testcase_27 AC 179 ms
52,736 KB
testcase_28 AC 164 ms
52,480 KB
testcase_29 AC 239 ms
57,044 KB
testcase_30 AC 192 ms
56,948 KB
testcase_31 AC 280 ms
65,408 KB
testcase_32 AC 308 ms
65,408 KB
testcase_33 AC 184 ms
56,960 KB
testcase_34 AC 227 ms
56,960 KB
testcase_35 AC 220 ms
64,768 KB
testcase_36 AC 240 ms
64,512 KB
testcase_37 AC 128 ms
37,228 KB
testcase_38 AC 150 ms
37,376 KB
testcase_39 AC 91 ms
35,968 KB
testcase_40 AC 92 ms
36,096 KB
testcase_41 AC 170 ms
43,352 KB
testcase_42 AC 130 ms
43,392 KB
testcase_43 AC 120 ms
39,296 KB
testcase_44 AC 433 ms
82,560 KB
testcase_45 AC 190 ms
57,460 KB
testcase_46 AC 123 ms
36,736 KB
testcase_47 AC 303 ms
59,776 KB
testcase_48 AC 268 ms
59,904 KB
testcase_49 AC 261 ms
60,908 KB
testcase_50 AC 214 ms
63,980 KB
testcase_51 AC 85 ms
31,732 KB
testcase_52 AC 372 ms
77,184 KB
testcase_53 AC 558 ms
84,736 KB
testcase_54 AC 501 ms
84,736 KB
testcase_55 AC 561 ms
84,736 KB
testcase_56 AC 425 ms
85,120 KB
testcase_57 AC 384 ms
84,736 KB
testcase_58 AC 377 ms
84,736 KB
testcase_59 AC 398 ms
84,736 KB
testcase_60 AC 389 ms
84,736 KB
testcase_61 AC 395 ms
84,604 KB
testcase_62 AC 553 ms
84,608 KB
testcase_63 AC 455 ms
84,468 KB
testcase_64 AC 461 ms
84,736 KB
testcase_65 AC 469 ms
84,736 KB
testcase_66 AC 478 ms
84,468 KB
testcase_67 AC 464 ms
84,992 KB
testcase_68 AC 386 ms
84,992 KB
testcase_69 AC 386 ms
84,736 KB
testcase_70 AC 402 ms
84,608 KB
testcase_71 AC 363 ms
84,736 KB
testcase_72 AC 452 ms
84,992 KB
testcase_73 AC 420 ms
84,988 KB
testcase_74 AC 374 ms
84,992 KB
testcase_75 AC 383 ms
84,468 KB
testcase_76 AC 368 ms
84,564 KB
testcase_77 AC 406 ms
240,900 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (92 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;
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 c = NList;
        var (n, k, m) = (c[0], c[1], c[2]);
        var p = NList;
        var e = NList;
        var a = NList;
        var h = NList;
        Array.Sort(p);
        Array.Sort(e);
        Array.Sort(a);
        Array.Sort(h);
        var ans = 0L;
        for (var i = 0; i < n; ++i)
        {
            var max = Math.Max(Math.Max(p[i], e[i]), Math.Max(a[i], h[i]));
            var min = Math.Min(Math.Min(p[i], e[i]), Math.Min(a[i], h[i]));
            ans = (ans + Exp(max - min, k, m)) % m;
        }
        WriteLine(ans);
    }
    static long Exp(long n, long p, int mod)
    {
        long _n = n % mod;
        var _p = p;
        var result = 1L;
        if ((_p & 1) == 1) result *= _n;
        while (_p > 0)
        {
            _n = _n * _n % mod;
            _p >>= 1;
            if ((_p & 1) == 1) result = result * _n % mod;
        }
        return result;
    }
}
0