結果

問題 No.118 門松列(2)
ユーザー matsu7874matsu7874
提出日時 2015-03-20 07:29:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 265 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,964 KB
最終ジャッジ日時 2024-10-09 06:54:28
合計ジャッジ時間 3,602 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
10,880 KB
testcase_01 AC 124 ms
16,856 KB
testcase_02 AC 120 ms
16,228 KB
testcase_03 AC 123 ms
16,452 KB
testcase_04 AC 124 ms
16,964 KB
testcase_05 AC 126 ms
16,508 KB
testcase_06 AC 67 ms
10,624 KB
testcase_07 AC 70 ms
10,752 KB
testcase_08 AC 65 ms
10,752 KB
testcase_09 AC 119 ms
16,268 KB
testcase_10 AC 88 ms
11,904 KB
testcase_11 AC 92 ms
12,288 KB
testcase_12 AC 88 ms
11,520 KB
testcase_13 AC 84 ms
11,136 KB
testcase_14 AC 122 ms
16,132 KB
testcase_15 AC 82 ms
10,624 KB
testcase_16 AC 104 ms
13,952 KB
testcase_17 AC 85 ms
11,008 KB
testcase_18 AC 95 ms
12,288 KB
testcase_19 AC 101 ms
13,184 KB
testcase_20 AC 106 ms
13,312 KB
testcase_21 AC 117 ms
15,324 KB
testcase_22 AC 89 ms
11,904 KB
testcase_23 AC 111 ms
14,972 KB
testcase_24 AC 96 ms
12,544 KB
testcase_25 AC 97 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N = int(input())
A = [int(x) for x in input().split()]
B = [0 for _ in range(100)]
for a in A:
    B[a-1] += 1
ans = 0
for i in range(98):
    for j in range(i+1,99):
        for k in range(j+1,100):
            ans += B[i]*B[j]*B[k]

print(ans % MOD)
0