結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー U SU S
提出日時 2021-01-22 22:01:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 148,024 KB
最終ジャッジ日時 2024-06-08 14:54:00
合計ジャッジ時間 34,511 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
60,160 KB
testcase_01 AC 54 ms
60,160 KB
testcase_02 AC 53 ms
60,160 KB
testcase_03 AC 325 ms
115,848 KB
testcase_04 AC 316 ms
115,592 KB
testcase_05 AC 296 ms
116,016 KB
testcase_06 AC 298 ms
115,624 KB
testcase_07 AC 395 ms
124,852 KB
testcase_08 AC 394 ms
124,948 KB
testcase_09 AC 161 ms
88,448 KB
testcase_10 AC 160 ms
88,576 KB
testcase_11 AC 483 ms
141,628 KB
testcase_12 AC 487 ms
141,996 KB
testcase_13 AC 344 ms
119,480 KB
testcase_14 AC 338 ms
119,488 KB
testcase_15 AC 316 ms
117,108 KB
testcase_16 AC 314 ms
117,100 KB
testcase_17 AC 525 ms
141,972 KB
testcase_18 AC 521 ms
141,968 KB
testcase_19 AC 465 ms
146,060 KB
testcase_20 AC 465 ms
145,808 KB
testcase_21 AC 537 ms
142,352 KB
testcase_22 AC 492 ms
142,232 KB
testcase_23 AC 349 ms
119,496 KB
testcase_24 AC 385 ms
119,520 KB
testcase_25 AC 119 ms
79,744 KB
testcase_26 AC 113 ms
79,872 KB
testcase_27 AC 222 ms
102,624 KB
testcase_28 AC 242 ms
102,992 KB
testcase_29 AC 259 ms
114,820 KB
testcase_30 AC 260 ms
114,952 KB
testcase_31 AC 325 ms
117,592 KB
testcase_32 AC 316 ms
117,340 KB
testcase_33 AC 259 ms
114,508 KB
testcase_34 AC 253 ms
113,996 KB
testcase_35 AC 308 ms
114,688 KB
testcase_36 AC 305 ms
114,952 KB
testcase_37 AC 118 ms
81,024 KB
testcase_38 AC 117 ms
81,024 KB
testcase_39 AC 111 ms
79,232 KB
testcase_40 AC 110 ms
79,488 KB
testcase_41 AC 152 ms
87,680 KB
testcase_42 AC 152 ms
87,424 KB
testcase_43 AC 140 ms
85,376 KB
testcase_44 AC 513 ms
140,736 KB
testcase_45 AC 266 ms
114,920 KB
testcase_46 AC 136 ms
84,352 KB
testcase_47 AC 407 ms
121,432 KB
testcase_48 AC 361 ms
119,700 KB
testcase_49 AC 363 ms
121,456 KB
testcase_50 AC 304 ms
115,240 KB
testcase_51 AC 87 ms
77,056 KB
testcase_52 AC 476 ms
148,024 KB
testcase_53 AC 511 ms
142,708 KB
testcase_54 AC 542 ms
141,812 KB
testcase_55 AC 532 ms
142,068 KB
testcase_56 AC 530 ms
142,200 KB
testcase_57 AC 539 ms
142,068 KB
testcase_58 AC 536 ms
142,068 KB
testcase_59 AC 526 ms
142,456 KB
testcase_60 AC 513 ms
142,444 KB
testcase_61 AC 505 ms
141,888 KB
testcase_62 AC 529 ms
142,448 KB
testcase_63 AC 524 ms
142,448 KB
testcase_64 AC 531 ms
141,684 KB
testcase_65 AC 522 ms
141,948 KB
testcase_66 AC 521 ms
142,196 KB
testcase_67 AC 550 ms
141,940 KB
testcase_68 AC 522 ms
141,944 KB
testcase_69 AC 485 ms
141,692 KB
testcase_70 AC 498 ms
141,944 KB
testcase_71 AC 493 ms
142,196 KB
testcase_72 AC 525 ms
142,072 KB
testcase_73 AC 529 ms
141,816 KB
testcase_74 AC 530 ms
141,696 KB
testcase_75 AC 526 ms
142,328 KB
testcase_76 AC 518 ms
143,216 KB
testcase_77 AC 530 ms
142,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
import math
import bisect
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1

n,k,m = mp()
p = []
for i in range(4):
    a = lmp()
    a.sort()
    p.append(a)
ans = 0
for i in range(n):
    q = []
    for j in range(4):
        q.append(p[j][i])
    d = max(q)-min(q)
    ans += pow(d,k,m)
print(ans%m)


    


0