結果

問題 No.118 門松列(2)
ユーザー ntudantuda
提出日時 2024-05-20 19:21:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 310 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 82,464 KB
最終ジャッジ日時 2024-12-20 17:54:09
合計ジャッジ時間 2,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
61,776 KB
testcase_01 AC 71 ms
81,404 KB
testcase_02 AC 71 ms
82,464 KB
testcase_03 AC 72 ms
81,516 KB
testcase_04 AC 70 ms
81,164 KB
testcase_05 AC 70 ms
81,356 KB
testcase_06 AC 43 ms
54,700 KB
testcase_07 AC 43 ms
54,616 KB
testcase_08 AC 45 ms
54,356 KB
testcase_09 AC 66 ms
78,800 KB
testcase_10 AC 50 ms
64,500 KB
testcase_11 AC 52 ms
66,132 KB
testcase_12 AC 50 ms
62,860 KB
testcase_13 AC 49 ms
63,168 KB
testcase_14 AC 64 ms
79,024 KB
testcase_15 AC 49 ms
61,372 KB
testcase_16 AC 56 ms
71,240 KB
testcase_17 AC 49 ms
61,728 KB
testcase_18 AC 54 ms
67,104 KB
testcase_19 AC 57 ms
69,844 KB
testcase_20 AC 57 ms
71,016 KB
testcase_21 AC 64 ms
76,704 KB
testcase_22 AC 51 ms
65,300 KB
testcase_23 AC 62 ms
75,004 KB
testcase_24 AC 52 ms
66,932 KB
testcase_25 AC 56 ms
69,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
MOD = 10 ** 9 + 7
N = int(input())
A = list(map(int, input().split()))
C = Counter(A)
NC = len(C)
dp = [1, 0, 0, 0]
for v in C.values():
    dp2 = [1, 0, 0, 0]
    for i in range(3):
        dp2[i + 1] = dp[i + 1] + v * dp[i]
        dp2[i + 1] %= MOD
    dp = dp2
print(dp[3])
0