結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー lloyzlloyz
提出日時 2022-09-04 14:13:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,632 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,516 KB
最終ジャッジ日時 2024-11-18 18:38:57
合計ジャッジ時間 79,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 809 ms
34,256 KB
testcase_04 AC 823 ms
34,256 KB
testcase_05 AC 729 ms
34,196 KB
testcase_06 AC 733 ms
34,060 KB
testcase_07 AC 1,078 ms
44,324 KB
testcase_08 AC 1,075 ms
44,204 KB
testcase_09 AC 325 ms
19,576 KB
testcase_10 AC 314 ms
19,700 KB
testcase_11 AC 1,391 ms
51,984 KB
testcase_12 AC 1,391 ms
52,092 KB
testcase_13 AC 887 ms
37,632 KB
testcase_14 AC 879 ms
37,632 KB
testcase_15 AC 797 ms
33,784 KB
testcase_16 AC 807 ms
33,644 KB
testcase_17 AC 1,508 ms
54,120 KB
testcase_18 AC 1,520 ms
54,120 KB
testcase_19 AC 1,303 ms
48,512 KB
testcase_20 AC 1,305 ms
48,640 KB
testcase_21 AC 1,412 ms
51,176 KB
testcase_22 AC 1,419 ms
51,432 KB
testcase_23 AC 915 ms
39,560 KB
testcase_24 AC 914 ms
39,444 KB
testcase_25 AC 156 ms
15,104 KB
testcase_26 AC 153 ms
15,104 KB
testcase_27 AC 501 ms
25,288 KB
testcase_28 AC 489 ms
25,168 KB
testcase_29 AC 598 ms
28,508 KB
testcase_30 AC 608 ms
28,508 KB
testcase_31 AC 797 ms
34,892 KB
testcase_32 AC 798 ms
34,764 KB
testcase_33 AC 598 ms
28,364 KB
testcase_34 AC 602 ms
28,488 KB
testcase_35 AC 780 ms
34,312 KB
testcase_36 AC 818 ms
34,344 KB
testcase_37 AC 165 ms
15,316 KB
testcase_38 AC 170 ms
15,316 KB
testcase_39 AC 142 ms
14,592 KB
testcase_40 AC 139 ms
14,592 KB
testcase_41 AC 271 ms
19,092 KB
testcase_42 AC 280 ms
19,088 KB
testcase_43 AC 220 ms
17,532 KB
testcase_44 AC 1,464 ms
54,832 KB
testcase_45 AC 631 ms
28,884 KB
testcase_46 AC 216 ms
16,788 KB
testcase_47 AC 1,092 ms
41,244 KB
testcase_48 AC 940 ms
40,944 KB
testcase_49 AC 967 ms
41,368 KB
testcase_50 AC 775 ms
34,020 KB
testcase_51 AC 56 ms
11,776 KB
testcase_52 AC 1,332 ms
49,892 KB
testcase_53 AC 1,503 ms
56,852 KB
testcase_54 AC 1,587 ms
58,260 KB
testcase_55 AC 1,578 ms
58,384 KB
testcase_56 AC 1,565 ms
56,852 KB
testcase_57 AC 1,613 ms
56,712 KB
testcase_58 AC 1,616 ms
58,392 KB
testcase_59 AC 1,596 ms
58,388 KB
testcase_60 AC 1,520 ms
58,260 KB
testcase_61 AC 1,419 ms
58,252 KB
testcase_62 AC 1,556 ms
58,380 KB
testcase_63 AC 1,569 ms
56,980 KB
testcase_64 AC 1,621 ms
56,836 KB
testcase_65 AC 1,605 ms
58,388 KB
testcase_66 AC 1,529 ms
56,852 KB
testcase_67 AC 1,632 ms
56,728 KB
testcase_68 AC 1,542 ms
58,368 KB
testcase_69 AC 1,392 ms
56,720 KB
testcase_70 AC 1,456 ms
58,516 KB
testcase_71 AC 1,419 ms
58,380 KB
testcase_72 AC 1,632 ms
56,844 KB
testcase_73 AC 877 ms
58,484 KB
testcase_74 AC 875 ms
56,852 KB
testcase_75 AC 869 ms
56,856 KB
testcase_76 AC 869 ms
56,956 KB
testcase_77 AC 874 ms
56,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, k, m = map(int, input().split())
P = list(map(int, input().split()))
E = list(map(int, input().split()))
A = list(map(int, input().split()))
H = list(map(int, input().split()))

P.sort()
E.sort()
A.sort()
H.sort()
ans = 0
for i in range(n):
    max_, min_ = max(P[i], E[i], A[i], H[i]), min(P[i], E[i], A[i], H[i])
    ans += pow(max_ - min_, k, m)
    ans %= m
print(ans)
0