結果

問題 No.1084 積の積
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-06-19 22:58:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 109,392 KB
最終ジャッジ日時 2024-07-03 15:27:12
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,424 KB
testcase_01 AC 34 ms
52,740 KB
testcase_02 AC 36 ms
52,824 KB
testcase_03 AC 35 ms
52,892 KB
testcase_04 WA -
testcase_05 AC 296 ms
109,076 KB
testcase_06 AC 294 ms
109,392 KB
testcase_07 AC 34 ms
52,128 KB
testcase_08 AC 33 ms
53,348 KB
testcase_09 AC 225 ms
98,908 KB
testcase_10 AC 36 ms
52,248 KB
testcase_11 AC 53 ms
68,892 KB
testcase_12 AC 109 ms
89,304 KB
testcase_13 AC 173 ms
107,156 KB
testcase_14 AC 99 ms
84,436 KB
testcase_15 AC 95 ms
84,408 KB
testcase_16 AC 197 ms
104,524 KB
testcase_17 AC 99 ms
87,396 KB
testcase_18 AC 146 ms
97,948 KB
testcase_19 AC 173 ms
106,928 KB
testcase_20 AC 77 ms
80,224 KB
testcase_21 AC 100 ms
84,612 KB
testcase_22 AC 84 ms
82,020 KB
testcase_23 AC 130 ms
93,904 KB
testcase_24 AC 117 ms
91,728 KB
testcase_25 AC 174 ms
106,996 KB
testcase_26 AC 200 ms
106,152 KB
testcase_27 AC 204 ms
106,080 KB
testcase_28 AC 204 ms
106,484 KB
testcase_29 AC 204 ms
106,192 KB
testcase_30 AC 199 ms
106,148 KB
testcase_31 AC 205 ms
106,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, = map(int, input().split())
mod = 10**9+7
X = list(map(int, input().split()))
X.append(10**9+7)
j = 0
sm = 1
Cs = [0]*N
for i in range(N):
    while j<=N and sm*X[j]<=10**9:
        sm *= X[j]
#        print(j, X[j], sm, j-i)
#        Cs[j] += j-i
        j += 1
    Cs[i] += j-i
    if X[i]:
        sm//=X[i]
#print(Cs)
D = []
for i in range(N):
    D.append((i*2, Cs[i]))
    D.append(((i+Cs[i])*2+1, Cs[i]))
#print(sorted(D))

D = sorted(D)
R = 1
cnt = 0
xm = 0
for idx, c in D:
    if idx%2:
        cnt -= 1
    else:
        idx //= 2
        xm -= cnt
#        print(xm, cnt, c+xm)
        R = R * pow(X[idx], c+xm, mod) % mod
        cnt += 1
        xm += c
print(R)

0