結果

問題 No.118 門松列(2)
ユーザー threepipes_sthreepipes_s
提出日時 2016-01-03 19:43:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 324 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,112 KB
最終ジャッジ日時 2024-10-09 07:20:27
合計ジャッジ時間 2,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 65 ms
17,112 KB
testcase_02 AC 63 ms
16,488 KB
testcase_03 AC 64 ms
16,452 KB
testcase_04 AC 65 ms
16,960 KB
testcase_05 AC 65 ms
16,516 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 64 ms
16,232 KB
testcase_10 AC 38 ms
11,776 KB
testcase_11 AC 40 ms
12,288 KB
testcase_12 AC 36 ms
11,520 KB
testcase_13 AC 34 ms
11,136 KB
testcase_14 AC 62 ms
16,476 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 48 ms
14,064 KB
testcase_17 AC 33 ms
11,136 KB
testcase_18 AC 39 ms
12,160 KB
testcase_19 AC 46 ms
13,312 KB
testcase_20 AC 46 ms
13,568 KB
testcase_21 AC 56 ms
15,456 KB
testcase_22 AC 38 ms
12,032 KB
testcase_23 AC 53 ms
15,096 KB
testcase_24 AC 41 ms
12,416 KB
testcase_25 AC 45 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
m = 1000000007;
n = int(input())
a = dict(Counter(list(map(int, input().split()))))
dp = [0,0,0]
for d in a:
    newdp = [a[d],0,0]
    for i in range(3):
        newdp[i] = (newdp[i]+dp[i])%m
    for i in range(1, 3):
        newdp[i] = (newdp[i]+dp[i-1]*a[d])%m
    dp = newdp
print(dp[2])
0