結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー あかしあみどりあかしあみどり
提出日時 2023-02-15 21:43:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 147,380 KB
最終ジャッジ日時 2024-07-18 04:58:44
合計ジャッジ時間 31,647 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 34 ms
51,584 KB
testcase_02 AC 34 ms
53,100 KB
testcase_03 AC 285 ms
123,300 KB
testcase_04 AC 264 ms
123,200 KB
testcase_05 AC 253 ms
123,036 KB
testcase_06 AC 239 ms
123,176 KB
testcase_07 AC 317 ms
124,460 KB
testcase_08 AC 312 ms
124,532 KB
testcase_09 AC 123 ms
89,344 KB
testcase_10 AC 119 ms
89,088 KB
testcase_11 AC 401 ms
147,380 KB
testcase_12 AC 403 ms
147,376 KB
testcase_13 AC 283 ms
128,204 KB
testcase_14 AC 286 ms
128,008 KB
testcase_15 AC 262 ms
124,352 KB
testcase_16 AC 254 ms
124,528 KB
testcase_17 AC 477 ms
145,560 KB
testcase_18 AC 440 ms
145,564 KB
testcase_19 AC 381 ms
137,400 KB
testcase_20 AC 395 ms
136,880 KB
testcase_21 AC 474 ms
146,748 KB
testcase_22 AC 482 ms
146,992 KB
testcase_23 AC 290 ms
122,868 KB
testcase_24 AC 295 ms
123,112 KB
testcase_25 AC 79 ms
79,232 KB
testcase_26 AC 78 ms
79,616 KB
testcase_27 AC 166 ms
96,472 KB
testcase_28 AC 211 ms
96,540 KB
testcase_29 AC 213 ms
102,544 KB
testcase_30 AC 239 ms
102,492 KB
testcase_31 AC 256 ms
127,836 KB
testcase_32 AC 273 ms
128,008 KB
testcase_33 AC 199 ms
101,804 KB
testcase_34 AC 208 ms
101,736 KB
testcase_35 AC 292 ms
123,344 KB
testcase_36 AC 253 ms
123,596 KB
testcase_37 AC 83 ms
81,156 KB
testcase_38 AC 83 ms
80,768 KB
testcase_39 AC 76 ms
77,952 KB
testcase_40 AC 77 ms
78,208 KB
testcase_41 AC 123 ms
89,216 KB
testcase_42 AC 123 ms
89,472 KB
testcase_43 AC 96 ms
85,888 KB
testcase_44 AC 425 ms
144,028 KB
testcase_45 AC 204 ms
101,748 KB
testcase_46 AC 95 ms
85,704 KB
testcase_47 AC 317 ms
123,304 KB
testcase_48 AC 292 ms
124,644 KB
testcase_49 AC 291 ms
122,512 KB
testcase_50 AC 241 ms
123,088 KB
testcase_51 AC 49 ms
68,028 KB
testcase_52 AC 387 ms
144,444 KB
testcase_53 AC 482 ms
140,884 KB
testcase_54 AC 471 ms
140,316 KB
testcase_55 AC 456 ms
140,756 KB
testcase_56 AC 460 ms
140,624 KB
testcase_57 AC 446 ms
140,436 KB
testcase_58 AC 446 ms
140,748 KB
testcase_59 AC 455 ms
140,368 KB
testcase_60 AC 538 ms
140,836 KB
testcase_61 AC 453 ms
140,580 KB
testcase_62 AC 481 ms
140,888 KB
testcase_63 AC 467 ms
140,500 KB
testcase_64 AC 467 ms
140,428 KB
testcase_65 AC 467 ms
140,612 KB
testcase_66 AC 528 ms
140,704 KB
testcase_67 AC 484 ms
140,420 KB
testcase_68 AC 553 ms
140,244 KB
testcase_69 AC 416 ms
140,684 KB
testcase_70 AC 417 ms
140,688 KB
testcase_71 AC 451 ms
140,576 KB
testcase_72 AC 609 ms
140,572 KB
testcase_73 AC 526 ms
140,300 KB
testcase_74 AC 440 ms
140,356 KB
testcase_75 AC 471 ms
140,572 KB
testcase_76 AC 448 ms
141,212 KB
testcase_77 AC 464 ms
140,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input()
def mi(): return list(map(int, input().split()))

# import sys
# input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
input_count = 0

input_count = 0
N,K,M = mi()

P = mi()
E = mi()
A = mi()
H = mi()
P.sort()
E.sort()
A.sort()
H.sort()
sums = 0
for _ in range(N):
    p = P.pop()
    e = E.pop()
    a = A.pop()
    h = H.pop()
    lists = [p,e,a,h]
    lists.sort()
    sums = (sums + pow(lists[-1]-lists[0], K,M) )%M
print(sums)
0