結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 403 ms
123,008 KB
testcase_04 AC 361 ms
123,048 KB
testcase_05 AC 326 ms
122,884 KB
testcase_06 AC 400 ms
123,144 KB
testcase_07 AC 424 ms
124,468 KB
testcase_08 AC 504 ms
124,592 KB
testcase_09 AC 179 ms
89,600 KB
testcase_10 AC 203 ms
89,216 KB
testcase_11 AC 543 ms
147,644 KB
testcase_12 AC 609 ms
147,444 KB
testcase_13 AC 379 ms
128,800 KB
testcase_14 AC 385 ms
128,924 KB
testcase_15 AC 370 ms
124,100 KB
testcase_16 AC 372 ms
124,040 KB
testcase_17 AC 616 ms
145,796 KB
testcase_18 AC 573 ms
145,920 KB
testcase_19 AC 526 ms
137,332 KB
testcase_20 AC 581 ms
137,340 KB
testcase_21 AC 611 ms
146,804 KB
testcase_22 AC 605 ms
146,804 KB
testcase_23 AC 393 ms
122,860 KB
testcase_24 AC 471 ms
122,808 KB
testcase_25 AC 129 ms
79,360 KB
testcase_26 AC 165 ms
79,232 KB
testcase_27 AC 300 ms
96,672 KB
testcase_28 AC 294 ms
96,472 KB
testcase_29 AC 349 ms
102,304 KB
testcase_30 AC 359 ms
102,684 KB
testcase_31 AC 381 ms
127,560 KB
testcase_32 AC 444 ms
128,000 KB
testcase_33 AC 321 ms
101,556 KB
testcase_34 AC 350 ms
101,512 KB
testcase_35 AC 396 ms
122,560 KB
testcase_36 AC 424 ms
122,744 KB
testcase_37 AC 168 ms
81,084 KB
testcase_38 AC 160 ms
81,024 KB
testcase_39 AC 170 ms
78,976 KB
testcase_40 AC 151 ms
78,976 KB
testcase_41 AC 216 ms
89,216 KB
testcase_42 AC 229 ms
89,216 KB
testcase_43 AC 246 ms
86,272 KB
testcase_44 AC 682 ms
143,868 KB
testcase_45 AC 303 ms
101,652 KB
testcase_46 AC 233 ms
85,504 KB
testcase_47 AC 417 ms
123,564 KB
testcase_48 AC 383 ms
123,880 KB
testcase_49 AC 404 ms
122,584 KB
testcase_50 AC 339 ms
123,108 KB
testcase_51 AC 114 ms
75,776 KB
testcase_52 AC 623 ms
144,892 KB
testcase_53 AC 812 ms
141,256 KB
testcase_54 AC 799 ms
140,724 KB
testcase_55 AC 653 ms
140,228 KB
testcase_56 AC 681 ms
140,880 KB
testcase_57 AC 701 ms
140,300 KB
testcase_58 AC 609 ms
140,428 KB
testcase_59 AC 584 ms
140,552 KB
testcase_60 AC 679 ms
140,220 KB
testcase_61 AC 525 ms
141,072 KB
testcase_62 AC 677 ms
141,144 KB
testcase_63 AC 614 ms
140,292 KB
testcase_64 AC 627 ms
140,816 KB
testcase_65 AC 592 ms
140,868 KB
testcase_66 AC 568 ms
140,808 KB
testcase_67 AC 568 ms
140,648 KB
testcase_68 AC 566 ms
140,548 KB
testcase_69 AC 612 ms
140,812 KB
testcase_70 AC 605 ms
140,808 KB
testcase_71 AC 584 ms
140,672 KB
testcase_72 AC 690 ms
141,128 KB
testcase_73 AC 735 ms
140,816 KB
testcase_74 AC 567 ms
140,432 KB
testcase_75 AC 615 ms
140,520 KB
testcase_76 AC 611 ms
141,188 KB
testcase_77 AC 544 ms
140,044 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