結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー kerroggukerroggu
提出日時 2021-01-22 21:28:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 702 ms / 2,000 ms
コード長 3,397 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 159,608 KB
最終ジャッジ日時 2024-06-08 13:13:45
合計ジャッジ時間 39,113 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
92,544 KB
testcase_01 AC 141 ms
92,672 KB
testcase_02 AC 141 ms
92,416 KB
testcase_03 AC 375 ms
130,304 KB
testcase_04 AC 359 ms
130,304 KB
testcase_05 AC 341 ms
129,152 KB
testcase_06 AC 399 ms
129,152 KB
testcase_07 AC 421 ms
137,268 KB
testcase_08 AC 579 ms
137,396 KB
testcase_09 AC 227 ms
107,392 KB
testcase_10 AC 228 ms
107,136 KB
testcase_11 AC 503 ms
151,392 KB
testcase_12 AC 498 ms
151,400 KB
testcase_13 AC 392 ms
138,496 KB
testcase_14 AC 376 ms
138,368 KB
testcase_15 AC 353 ms
129,664 KB
testcase_16 AC 348 ms
129,536 KB
testcase_17 AC 540 ms
157,108 KB
testcase_18 AC 533 ms
157,372 KB
testcase_19 AC 535 ms
133,168 KB
testcase_20 AC 471 ms
132,276 KB
testcase_21 AC 608 ms
147,904 KB
testcase_22 AC 504 ms
149,272 KB
testcase_23 AC 389 ms
137,600 KB
testcase_24 AC 455 ms
137,856 KB
testcase_25 AC 187 ms
97,024 KB
testcase_26 AC 184 ms
95,872 KB
testcase_27 AC 279 ms
110,464 KB
testcase_28 AC 278 ms
110,464 KB
testcase_29 AC 291 ms
115,072 KB
testcase_30 AC 339 ms
114,816 KB
testcase_31 AC 362 ms
134,144 KB
testcase_32 AC 359 ms
134,272 KB
testcase_33 AC 338 ms
114,048 KB
testcase_34 AC 304 ms
115,840 KB
testcase_35 AC 435 ms
131,072 KB
testcase_36 AC 353 ms
130,944 KB
testcase_37 AC 187 ms
97,920 KB
testcase_38 AC 191 ms
98,176 KB
testcase_39 AC 188 ms
94,592 KB
testcase_40 AC 180 ms
94,464 KB
testcase_41 AC 283 ms
107,776 KB
testcase_42 AC 211 ms
107,648 KB
testcase_43 AC 220 ms
102,784 KB
testcase_44 AC 591 ms
159,608 KB
testcase_45 AC 352 ms
114,304 KB
testcase_46 AC 198 ms
101,376 KB
testcase_47 AC 442 ms
138,112 KB
testcase_48 AC 409 ms
136,960 KB
testcase_49 AC 400 ms
137,088 KB
testcase_50 AC 359 ms
129,408 KB
testcase_51 AC 179 ms
93,312 KB
testcase_52 AC 619 ms
146,412 KB
testcase_53 AC 611 ms
157,472 KB
testcase_54 AC 702 ms
156,520 KB
testcase_55 AC 553 ms
157,728 KB
testcase_56 AC 538 ms
156,684 KB
testcase_57 AC 557 ms
156,788 KB
testcase_58 AC 538 ms
157,416 KB
testcase_59 AC 577 ms
156,880 KB
testcase_60 AC 522 ms
156,804 KB
testcase_61 AC 521 ms
157,296 KB
testcase_62 AC 538 ms
157,136 KB
testcase_63 AC 536 ms
157,600 KB
testcase_64 AC 536 ms
156,680 KB
testcase_65 AC 537 ms
157,116 KB
testcase_66 AC 539 ms
157,012 KB
testcase_67 AC 570 ms
156,924 KB
testcase_68 AC 548 ms
156,488 KB
testcase_69 AC 511 ms
156,776 KB
testcase_70 AC 509 ms
156,756 KB
testcase_71 AC 507 ms
156,424 KB
testcase_72 AC 622 ms
157,664 KB
testcase_73 AC 596 ms
157,056 KB
testcase_74 AC 602 ms
156,956 KB
testcase_75 AC 541 ms
157,468 KB
testcase_76 AC 530 ms
157,312 KB
testcase_77 AC 541 ms
156,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read=sys.stdin.buffer.read;readline=sys.stdin.buffer.readline;input=lambda:sys.stdin.readline().rstrip()
import bisect,string,math,time,functools,random,fractions
from heapq import heappush,heappop,heapify
from collections import deque,defaultdict,Counter
from itertools import permutations,combinations,groupby
rep=range;R=range
def I():return int(input())
def LI():return [int(i) for i in input().split()]
def LI_():return [int(i)-1 for i in input().split()]
def S_():return input()
def IS():return input().split()
def LS():return [i for i in input().split()]
def NI(n):return [int(input()) for i in range(n)]
def NI_(n):return [int(input())-1 for i in range(n)]
def NLI(n):return [[int(i) for i in input().split()] for i in range(n)]
def NLI_(n):return [[int(i)-1 for i in input().split()] for i in range(n)]
def StoLI():return [ord(i)-97 for i in input()]
def ItoS(n):return chr(n+97)
def LtoS(ls):return ''.join([chr(i+97) for i in ls])
def RLI(n=8,a=1,b=10):return [random.randint(a,b)for i in range(n)]
def RI(a=1,b=10):return random.randint(a,b)
def INP():
    N=9
    n=random.randint(1,N)
    A=[random.randint(1,n) for i in range(m)]
    return n,A
def Rtest(T):
    case,err=0,0
    for i in range(T):
        inp=INP()
        a1=naive(*inp)
        a2=solve(*inp)
        if a1!=a2:
            print(inp)
            print('naive',a1)
            print('solve',a2)
            err+=1
        case+=1
    print('Tested',case,'case with',err,'errors')
def GI(V,E,ls=None,Directed=False,index=1):
    org_inp=[];g=[[] for i in range(V)]
    FromStdin=True if ls==None else False
    for i in range(E):
        if FromStdin:
            inp=LI()
            org_inp.append(inp)
        else:
            inp=ls[i]
        if len(inp)==2:a,b=inp;c=1
        else:a,b,c=inp
        if index==1:a-=1;b-=1
        aa=(a,c);bb=(b,c);g[a].append(bb)
        if not Directed:g[b].append(aa)
    return g,org_inp
def GGI(h,w,search=None,replacement_of_found='.',mp_def={'#':1,'.':0},boundary=1):
    #h,w,g,sg=GGI(h,w,search=['S','G'],replacement_of_found='.',mp_def={'#':1,'.':0},boundary=1) # sample usage
    mp=[boundary]*(w+2);found={}
    for i in R(h):
        s=input()
        for char in search:
            if char in s:
                found[char]=((i+1)*(w+2)+s.index(char)+1)
                mp_def[char]=mp_def[replacement_of_found]
        mp+=[boundary]+[mp_def[j] for j in s]+[boundary]
    mp+=[boundary]*(w+2)
    return h+2,w+2,mp,found
def TI(n):return GI(n,n-1)
def accum(ls):
    rt=[0]
    for i in ls:rt+=[rt[-1]+i]
    return rt
def bit_combination(n,base=2):
    rt=[]
    for tb in R(base**n):s=[tb//(base**bt)%base for bt in R(n)];rt+=[s]
    return rt
def gcd(x,y):
    if y==0:return x
    if x%y==0:return y
    while x%y!=0:x,y=y,x%y
    return y
def YN(x):print(['NO','YES'][x])
def Yn(x):print(['No','Yes'][x])
def show(*inp,end='\n'):
    if show_flg:print(*inp,end=end)

mo=10**9+7
#mo=998244353
inf=1<<63
FourNb=[(-1,0),(1,0),(0,1),(0,-1)];EightNb=[(-1,0),(1,0),(0,1),(0,-1),(1,1),(-1,-1),(1,-1),(-1,1)];compas=dict(zip('WENS',FourNb));cursol=dict(zip('LRUD',FourNb))
alp=[chr(ord('a')+i)for i in range(26)]
sys.setrecursionlimit(10**7)

show_flg=False
show_flg=True

ans=0


n,k,m=map(int,input().split())
x=[]
for i in range(4):
    x+=sorted(LI())

for i in range(n):
    d=max(x[i::n])-min(x[i::n])
    ans+=pow(d,k,m)
    ans%=m
print(ans)
0