結果

問題 No.118 門松列(2)
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-09-10 01:42:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-06-27 17:48:42
合計ジャッジ時間 2,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,896 KB
testcase_01 AC 68 ms
82,764 KB
testcase_02 AC 68 ms
82,816 KB
testcase_03 AC 67 ms
82,748 KB
testcase_04 AC 68 ms
82,816 KB
testcase_05 AC 71 ms
82,568 KB
testcase_06 AC 51 ms
61,952 KB
testcase_07 AC 53 ms
61,952 KB
testcase_08 AC 52 ms
61,952 KB
testcase_09 AC 71 ms
80,768 KB
testcase_10 AC 53 ms
68,464 KB
testcase_11 AC 55 ms
70,416 KB
testcase_12 AC 53 ms
65,536 KB
testcase_13 AC 53 ms
64,768 KB
testcase_14 AC 66 ms
81,024 KB
testcase_15 AC 52 ms
63,488 KB
testcase_16 AC 59 ms
72,960 KB
testcase_17 AC 54 ms
65,936 KB
testcase_18 AC 56 ms
69,976 KB
testcase_19 AC 59 ms
72,192 KB
testcase_20 AC 59 ms
72,832 KB
testcase_21 AC 64 ms
78,208 KB
testcase_22 AC 55 ms
67,712 KB
testcase_23 AC 64 ms
76,544 KB
testcase_24 AC 57 ms
69,376 KB
testcase_25 AC 59 ms
71,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18
mod = 10**9+7
from collections import *

n = int(input())
a = list(MI())

cnt = [0] * 101
for i in a:
    cnt[i] += 1

ans = 0
for b1 in range(1, 101):
    for b2 in range(b1+1, 101):
        for b3 in range(b2+1, 101):
            ans += cnt[b1] * cnt[b2] * cnt[b3]
            ans %= mod
print(ans)
0