結果

問題 No.118 門松列(2)
ユーザー convexineqconvexineq
提出日時 2020-12-17 21:15:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 190 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 82,276 KB
最終ジャッジ日時 2024-09-21 08:16:57
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,224 KB
testcase_01 AC 66 ms
81,820 KB
testcase_02 AC 62 ms
81,792 KB
testcase_03 AC 62 ms
81,960 KB
testcase_04 AC 62 ms
81,748 KB
testcase_05 AC 62 ms
82,276 KB
testcase_06 AC 39 ms
52,408 KB
testcase_07 AC 39 ms
52,072 KB
testcase_08 AC 40 ms
52,564 KB
testcase_09 AC 60 ms
79,136 KB
testcase_10 AC 49 ms
63,460 KB
testcase_11 AC 50 ms
64,800 KB
testcase_12 AC 46 ms
61,716 KB
testcase_13 AC 43 ms
61,700 KB
testcase_14 AC 60 ms
80,816 KB
testcase_15 AC 42 ms
58,284 KB
testcase_16 AC 52 ms
70,228 KB
testcase_17 AC 43 ms
59,972 KB
testcase_18 AC 48 ms
64,444 KB
testcase_19 AC 56 ms
69,296 KB
testcase_20 AC 58 ms
69,804 KB
testcase_21 AC 60 ms
77,216 KB
testcase_22 AC 48 ms
65,016 KB
testcase_23 AC 56 ms
75,120 KB
testcase_24 AC 51 ms
66,668 KB
testcase_25 AC 50 ms
69,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
r = [0]*101
for ai in a: r[ai] += 1
MOD = 10**9+7
x,y,z,w = 1,0,0,0
for ri in r:
    y,z,w = (y+x*ri)%MOD, (z+y*ri)%MOD, (w+z*ri)%MOD
print(w)
0