結果
問題 | No.2705 L to R Graph (Another ver.) |
ユーザー | hirayuu_yc |
提出日時 | 2024-02-11 15:56:56 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,877 bytes |
コンパイル時間 | 377 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 608,420 KB |
最終ジャッジ日時 | 2024-09-28 18:08:45 |
合計ジャッジ時間 | 72,628 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
59,636 KB |
testcase_01 | AC | 37 ms
59,860 KB |
testcase_02 | AC | 42 ms
61,144 KB |
testcase_03 | AC | 43 ms
61,588 KB |
testcase_04 | AC | 37 ms
60,508 KB |
testcase_05 | AC | 43 ms
61,712 KB |
testcase_06 | AC | 42 ms
62,624 KB |
testcase_07 | AC | 43 ms
61,008 KB |
testcase_08 | AC | 1,514 ms
488,996 KB |
testcase_09 | MLE | - |
testcase_10 | AC | 1,222 ms
417,500 KB |
testcase_11 | AC | 1,353 ms
475,192 KB |
testcase_12 | AC | 1,004 ms
358,260 KB |
testcase_13 | AC | 589 ms
260,780 KB |
testcase_14 | MLE | - |
testcase_15 | AC | 252 ms
138,192 KB |
testcase_16 | AC | 1,013 ms
360,124 KB |
testcase_17 | AC | 477 ms
257,124 KB |
testcase_18 | AC | 1,539 ms
507,004 KB |
testcase_19 | AC | 786 ms
319,296 KB |
testcase_20 | AC | 549 ms
261,616 KB |
testcase_21 | AC | 1,317 ms
452,340 KB |
testcase_22 | AC | 1,292 ms
446,628 KB |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
testcase_38 | MLE | - |
testcase_39 | MLE | - |
testcase_40 | MLE | - |
testcase_41 | MLE | - |
testcase_42 | MLE | - |
testcase_43 | MLE | - |
testcase_44 | MLE | - |
testcase_45 | MLE | - |
testcase_46 | MLE | - |
testcase_47 | MLE | - |
testcase_48 | MLE | - |
testcase_49 | MLE | - |
testcase_50 | MLE | - |
testcase_51 | MLE | - |
testcase_52 | MLE | - |
ソースコード
def cumsum(x,d=1): for i in range(d,len(x)): x[i]+=x[i-d] N,P=map(int,input().split()) ans=0 f=[0,0] fact=1 for i in range(2,N+1): f.append((pow(N,N-i,P)*fact)%P) fact*=N-i fact%=P dist=[0]*N cum=0 pat=0 for i in range(N-2,0,-1): cum+=f[i+2] pat+=cum cum%=P pat%=P dist[i]=pat backet=300 pats=[0]*N*2 det=[[0]*N*2 for i in range(backet+1)] for i in range(1,N+1): for j in range(N+1): if i*j>=N: break if j==0: pats[1]+=N-i+1 pats[i*(j+1)]-=N-i+1 continue if j>backet: cnt=0 for k in range(i*j+1,i*(j+1),j): pats[k]+=1 cnt+=1 pats[i*(j+1)]-=cnt else: det[j][i*j+1]+=1 cnt=(i*(j+1)-2)//j-i+1 det[j][min(N*2-1,i*j+1+cnt*j)]-=1 pats[i*(j+1)]-=cnt for i in range(1,backet+1): cumsum(det[i],i) for j in range(N*2): pats[j]+=det[i][j] cumsum(pats) for i in range(N-1): pats[i]=N*(N+1)//2-pats[i] ans+=pats[i]*dist[i] ans%=P cumsum(f) div=[[] for i in range(N+1)] cum=[[0] for i in range(N+1)] for i in range(1,N+1): for j in range(i,N+1,i): div[j].append(i) cum[i].append(cum[i][-1]+f[j]) for i in range(1,N+1): gcd=[0]*len(div[i]) for j in range(len(div[i])-1,-1,-1): gcd[j]+=N//div[i][j] for k in range(j): if div[i][j]%div[i][k]==0: gcd[k]-=gcd[j] pl=cum[div[i][j]][-1]-cum[div[i][j]][i//div[i][j]] plcnt=len(cum[div[i][j]])-1-i//div[i][j] mi=cum[div[i][j]][-1]-cum[div[i][j]][i//div[i][j]-1]+f[i-1]*(i//div[i][j]-1) micnt=plcnt+1+i//div[i][j]-1 ans+=(pl+f[-1]*(micnt-plcnt)-mi)*gcd[j] if j==0: ans+=(pl+f[-1]*(micnt-plcnt)-mi)*N*(N-1)//2 ans%=P print((ans*N*(N-1))%P)