結果

問題 No.118 門松列(2)
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-02 05:59:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 265 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,984 KB
最終ジャッジ日時 2024-04-20 01:06:58
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 55 ms
16,984 KB
testcase_02 AC 54 ms
16,356 KB
testcase_03 AC 55 ms
16,572 KB
testcase_04 AC 55 ms
16,828 KB
testcase_05 AC 56 ms
16,632 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 57 ms
16,448 KB
testcase_10 AC 32 ms
11,904 KB
testcase_11 AC 34 ms
12,288 KB
testcase_12 AC 29 ms
11,520 KB
testcase_13 AC 29 ms
11,136 KB
testcase_14 AC 51 ms
16,052 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 39 ms
14,080 KB
testcase_17 AC 29 ms
11,008 KB
testcase_18 AC 32 ms
12,160 KB
testcase_19 AC 37 ms
13,184 KB
testcase_20 AC 38 ms
13,308 KB
testcase_21 AC 48 ms
15,184 KB
testcase_22 AC 31 ms
12,032 KB
testcase_23 AC 45 ms
15,092 KB
testcase_24 AC 32 ms
12,544 KB
testcase_25 AC 37 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
mod = 10 ** 9 + 7

N = int(input())
A = list(map(int, input().split()))
C = Counter(A)

dp = [0] * 4
dp[0] = 1
for v in C.values():
    for i in reversed(range(1, 4)):
        dp[i] += dp[i - 1] * v
        dp[i] %= mod

print(dp[3])
0