結果

問題 No.1261 数字集め
ユーザー chineristACchineristAC
提出日時 2020-10-16 23:16:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,015 ms / 8,000 ms
コード長 1,071 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 254,552 KB
最終ジャッジ日時 2024-07-21 06:20:34
合計ジャッジ時間 46,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,015 ms
246,748 KB
testcase_01 AC 187 ms
127,460 KB
testcase_02 AC 301 ms
176,232 KB
testcase_03 AC 250 ms
177,004 KB
testcase_04 AC 186 ms
155,020 KB
testcase_05 AC 339 ms
230,828 KB
testcase_06 AC 206 ms
169,716 KB
testcase_07 AC 256 ms
177,780 KB
testcase_08 AC 173 ms
142,428 KB
testcase_09 AC 213 ms
180,940 KB
testcase_10 AC 59 ms
68,608 KB
testcase_11 AC 398 ms
229,896 KB
testcase_12 AC 353 ms
204,076 KB
testcase_13 AC 295 ms
188,268 KB
testcase_14 AC 75 ms
84,736 KB
testcase_15 AC 178 ms
137,360 KB
testcase_16 AC 271 ms
178,048 KB
testcase_17 AC 250 ms
197,044 KB
testcase_18 AC 170 ms
138,156 KB
testcase_19 AC 257 ms
177,120 KB
testcase_20 AC 80 ms
91,008 KB
testcase_21 AC 362 ms
253,904 KB
testcase_22 AC 358 ms
254,160 KB
testcase_23 AC 358 ms
253,904 KB
testcase_24 AC 368 ms
253,996 KB
testcase_25 AC 370 ms
254,544 KB
testcase_26 AC 383 ms
253,772 KB
testcase_27 AC 387 ms
254,028 KB
testcase_28 AC 386 ms
254,164 KB
testcase_29 AC 381 ms
254,156 KB
testcase_30 AC 373 ms
254,340 KB
testcase_31 AC 373 ms
253,900 KB
testcase_32 AC 374 ms
254,160 KB
testcase_33 AC 370 ms
254,416 KB
testcase_34 AC 366 ms
253,900 KB
testcase_35 AC 369 ms
254,552 KB
testcase_36 AC 368 ms
253,900 KB
testcase_37 AC 372 ms
254,028 KB
testcase_38 AC 373 ms
253,900 KB
testcase_39 AC 374 ms
254,476 KB
testcase_40 AC 378 ms
254,536 KB
testcase_41 AC 377 ms
254,084 KB
testcase_42 AC 375 ms
254,160 KB
testcase_43 AC 371 ms
254,156 KB
testcase_44 AC 469 ms
221,692 KB
testcase_45 AC 268 ms
106,240 KB
testcase_46 AC 197 ms
164,004 KB
testcase_47 AC 294 ms
128,116 KB
testcase_48 AC 344 ms
177,848 KB
testcase_49 AC 407 ms
220,864 KB
testcase_50 AC 439 ms
190,152 KB
testcase_51 AC 166 ms
110,460 KB
testcase_52 AC 154 ms
79,196 KB
testcase_53 AC 249 ms
110,372 KB
testcase_54 AC 319 ms
109,608 KB
testcase_55 AC 200 ms
95,488 KB
testcase_56 AC 262 ms
99,328 KB
testcase_57 AC 353 ms
175,824 KB
testcase_58 AC 237 ms
105,984 KB
testcase_59 AC 482 ms
223,360 KB
testcase_60 AC 251 ms
114,432 KB
testcase_61 AC 261 ms
128,536 KB
testcase_62 AC 504 ms
197,152 KB
testcase_63 AC 151 ms
97,920 KB
testcase_64 AC 532 ms
228,624 KB
testcase_65 AC 321 ms
194,328 KB
testcase_66 AC 268 ms
179,404 KB
testcase_67 AC 337 ms
196,832 KB
testcase_68 AC 296 ms
167,568 KB
testcase_69 AC 255 ms
166,712 KB
testcase_70 AC 353 ms
140,160 KB
testcase_71 AC 494 ms
189,700 KB
testcase_72 AC 268 ms
112,868 KB
testcase_73 AC 306 ms
122,160 KB
testcase_74 AC 203 ms
99,584 KB
testcase_75 AC 350 ms
154,304 KB
testcase_76 AC 359 ms
175,764 KB
testcase_77 AC 426 ms
203,144 KB
testcase_78 AC 192 ms
79,104 KB
testcase_79 AC 413 ms
205,528 KB
testcase_80 AC 245 ms
78,592 KB
testcase_81 AC 231 ms
89,472 KB
testcase_82 AC 511 ms
196,764 KB
testcase_83 AC 416 ms
116,740 KB
testcase_84 AC 655 ms
246,608 KB
testcase_85 AC 622 ms
245,972 KB
testcase_86 AC 632 ms
246,732 KB
testcase_87 AC 626 ms
246,068 KB
testcase_88 AC 844 ms
246,096 KB
testcase_89 AC 674 ms
246,220 KB
testcase_90 AC 708 ms
246,216 KB
testcase_91 AC 686 ms
246,344 KB
testcase_92 AC 602 ms
245,960 KB
testcase_93 AC 585 ms
246,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N,M = map(int,input().split())
A = [0,0] + list(map(int,input().split()))
mod = 10**9+7

def calc(x,y,z=N):
    inv = (A[x]-A[y])*(A[y]-A[z])*(A[z]-A[x])
    tmp = (A[z]-A[x]) * (pow(A[z]-1,M-1,mod) - pow(A[y]-1,M-1,mod))
    tmp %= mod
    tmp += (A[y]-A[z]) * (pow(A[z]-1,M-1,mod) - pow(A[x]-1,M-1,mod))
    tmp %= mod
    tmp = (tmp * pow(inv,mod-2,mod)) % mod
    return tmp

Q = int(input())
query = [tuple(map(int,input().split())) for i in range(Q)]

t = [-1 for i in range(N+1)]
for i in range(Q):
    x,y = query[i]
    if y==N:
        t[x] = i+1
for i in range(2,N):
    if N%i==0:
        t[i] = 0

ans = [0 for i in range(Q+1)]

for i in range(2,N+1):
    for j in range(2,N//i+1):
        if t[i*j]!=-1:
            ans[t[i*j]] += calc(i,i*j)
            ans[t[i*j]] %= mod

for i in range(Q):
    x,y = query[i]
    if y!=N and t[y]!=-1:
        ans[max(i+1,t[y])] += calc(x,y)
        ans[max(i+1,t[y])] %= mod

for i in range(1,Q+1):
    ans[i] += ans[i-1]
    ans[i] %= mod

for i in range(Q+1):
    print(ans[i])
0