結果

問題 No.1084 積の積
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-06-19 22:53:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 655 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 109,180 KB
最終ジャッジ日時 2024-07-03 15:22:10
合計ジャッジ時間 5,744 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 AC 319 ms
109,056 KB
testcase_07 RE -
testcase_08 AC 42 ms
51,840 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 55 ms
67,712 KB
testcase_12 AC 116 ms
89,216 KB
testcase_13 AC 181 ms
106,752 KB
testcase_14 AC 110 ms
84,144 KB
testcase_15 AC 106 ms
84,136 KB
testcase_16 AC 199 ms
105,600 KB
testcase_17 AC 107 ms
87,444 KB
testcase_18 AC 153 ms
98,088 KB
testcase_19 AC 181 ms
107,164 KB
testcase_20 AC 88 ms
80,244 KB
testcase_21 AC 102 ms
84,216 KB
testcase_22 AC 101 ms
82,064 KB
testcase_23 AC 137 ms
93,572 KB
testcase_24 AC 124 ms
91,180 KB
testcase_25 AC 183 ms
106,496 KB
testcase_26 AC 214 ms
107,804 KB
testcase_27 AC 216 ms
107,632 KB
testcase_28 AC 216 ms
107,808 KB
testcase_29 AC 208 ms
107,836 KB
testcase_30 AC 214 ms
108,156 KB
testcase_31 AC 219 ms
107,748 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 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
    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