結果

問題 No.118 門松列(2)
ユーザー nbisconbisco
提出日時 2017-01-21 22:20:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,308 KB
最終ジャッジ日時 2024-12-23 04:30:43
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
10,624 KB
testcase_01 AC 150 ms
16,308 KB
testcase_02 AC 136 ms
15,768 KB
testcase_03 AC 141 ms
15,776 KB
testcase_04 AC 144 ms
16,160 KB
testcase_05 AC 142 ms
15,780 KB
testcase_06 AC 85 ms
10,368 KB
testcase_07 AC 82 ms
10,624 KB
testcase_08 AC 81 ms
10,496 KB
testcase_09 AC 141 ms
15,376 KB
testcase_10 AC 115 ms
11,392 KB
testcase_11 AC 115 ms
11,776 KB
testcase_12 AC 104 ms
11,392 KB
testcase_13 AC 106 ms
10,880 KB
testcase_14 AC 143 ms
15,356 KB
testcase_15 AC 97 ms
10,496 KB
testcase_16 AC 127 ms
13,312 KB
testcase_17 AC 110 ms
10,752 KB
testcase_18 AC 115 ms
11,904 KB
testcase_19 AC 125 ms
12,928 KB
testcase_20 AC 130 ms
13,184 KB
testcase_21 AC 130 ms
14,560 KB
testcase_22 AC 120 ms
11,776 KB
testcase_23 AC 138 ms
14,332 KB
testcase_24 AC 116 ms
12,160 KB
testcase_25 AC 122 ms
12,928 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