結果

問題 No.118 門松列(2)
ユーザー nbisconbisco
提出日時 2017-01-21 22:20:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,564 KB
最終ジャッジ日時 2024-06-02 08:56:29
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
10,624 KB
testcase_01 AC 124 ms
16,564 KB
testcase_02 AC 120 ms
16,020 KB
testcase_03 AC 124 ms
16,156 KB
testcase_04 AC 126 ms
16,160 KB
testcase_05 AC 119 ms
16,036 KB
testcase_06 AC 72 ms
10,752 KB
testcase_07 AC 69 ms
10,752 KB
testcase_08 AC 69 ms
10,752 KB
testcase_09 AC 122 ms
15,884 KB
testcase_10 AC 91 ms
11,648 KB
testcase_11 AC 95 ms
12,032 KB
testcase_12 AC 90 ms
11,520 KB
testcase_13 AC 87 ms
11,136 KB
testcase_14 AC 118 ms
15,740 KB
testcase_15 AC 85 ms
10,752 KB
testcase_16 AC 103 ms
13,696 KB
testcase_17 AC 89 ms
11,136 KB
testcase_18 AC 95 ms
12,160 KB
testcase_19 AC 100 ms
13,184 KB
testcase_20 AC 102 ms
13,056 KB
testcase_21 AC 112 ms
14,948 KB
testcase_22 AC 94 ms
11,904 KB
testcase_23 AC 106 ms
14,848 KB
testcase_24 AC 95 ms
12,288 KB
testcase_25 AC 102 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = [0 for i in range(100)]
for i in input().strip().split(" "):
    a[int(i)-1] += 1

mod = 10**9 + 7
total = 0
for i in range(100):
    for j in range(i+1, 100):
        for k in range(j+1, 100):
            total += a[i] * a[j] * a[k]
            total %= mod
print(total)
0