結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー yuusanlondonyuusanlondon
提出日時 2021-01-22 21:26:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 147,520 KB
最終ジャッジ日時 2024-06-08 13:06:59
合計ジャッジ時間 37,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 343 ms
123,132 KB
testcase_04 AC 332 ms
123,144 KB
testcase_05 AC 315 ms
123,016 KB
testcase_06 AC 315 ms
122,764 KB
testcase_07 AC 401 ms
124,848 KB
testcase_08 AC 384 ms
124,724 KB
testcase_09 AC 164 ms
89,344 KB
testcase_10 AC 160 ms
89,600 KB
testcase_11 AC 491 ms
147,520 KB
testcase_12 AC 510 ms
147,388 KB
testcase_13 AC 364 ms
129,100 KB
testcase_14 AC 383 ms
129,056 KB
testcase_15 AC 357 ms
124,156 KB
testcase_16 AC 345 ms
124,044 KB
testcase_17 AC 531 ms
145,396 KB
testcase_18 AC 542 ms
145,528 KB
testcase_19 AC 465 ms
137,480 KB
testcase_20 AC 472 ms
137,472 KB
testcase_21 AC 526 ms
146,420 KB
testcase_22 AC 582 ms
146,932 KB
testcase_23 AC 357 ms
122,680 KB
testcase_24 AC 373 ms
122,680 KB
testcase_25 AC 130 ms
79,616 KB
testcase_26 AC 123 ms
79,616 KB
testcase_27 AC 219 ms
96,712 KB
testcase_28 AC 210 ms
96,600 KB
testcase_29 AC 262 ms
102,812 KB
testcase_30 AC 253 ms
102,560 KB
testcase_31 AC 337 ms
127,784 KB
testcase_32 AC 350 ms
127,916 KB
testcase_33 AC 260 ms
101,944 KB
testcase_34 AC 259 ms
101,484 KB
testcase_35 AC 348 ms
122,492 KB
testcase_36 AC 320 ms
122,740 KB
testcase_37 AC 125 ms
80,768 KB
testcase_38 AC 127 ms
81,024 KB
testcase_39 AC 128 ms
78,848 KB
testcase_40 AC 127 ms
78,976 KB
testcase_41 AC 259 ms
89,216 KB
testcase_42 AC 232 ms
89,344 KB
testcase_43 AC 177 ms
86,400 KB
testcase_44 AC 642 ms
144,200 KB
testcase_45 AC 306 ms
101,784 KB
testcase_46 AC 166 ms
85,760 KB
testcase_47 AC 394 ms
123,184 KB
testcase_48 AC 346 ms
123,992 KB
testcase_49 AC 371 ms
122,768 KB
testcase_50 AC 322 ms
123,240 KB
testcase_51 AC 97 ms
75,904 KB
testcase_52 AC 589 ms
144,188 KB
testcase_53 AC 658 ms
140,672 KB
testcase_54 AC 669 ms
140,804 KB
testcase_55 AC 520 ms
140,932 KB
testcase_56 AC 528 ms
140,860 KB
testcase_57 AC 511 ms
140,564 KB
testcase_58 AC 513 ms
141,056 KB
testcase_59 AC 573 ms
141,192 KB
testcase_60 AC 638 ms
140,608 KB
testcase_61 AC 499 ms
140,940 KB
testcase_62 AC 567 ms
140,812 KB
testcase_63 AC 541 ms
140,416 KB
testcase_64 AC 577 ms
141,196 KB
testcase_65 AC 589 ms
141,328 KB
testcase_66 AC 546 ms
140,744 KB
testcase_67 AC 585 ms
140,548 KB
testcase_68 AC 521 ms
140,932 KB
testcase_69 AC 491 ms
140,940 KB
testcase_70 AC 514 ms
140,820 KB
testcase_71 AC 486 ms
141,200 KB
testcase_72 AC 588 ms
140,476 KB
testcase_73 AC 512 ms
140,808 KB
testcase_74 AC 523 ms
140,680 KB
testcase_75 AC 502 ms
140,808 KB
testcase_76 AC 506 ms
140,684 KB
testcase_77 AC 530 ms
140,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
c=list(map(int,input().split()))
d=list(map(int,input().split()))
a.sort()
b.sort()
c.sort()
d.sort()
MOD=m
ans=0
for i in range(n):
  ans=(ans+pow(max(a[i],b[i],c[i],d[i])-min(a[i],b[i],c[i],d[i]),k,MOD))%MOD
print(ans)
0