結果

問題 No.118 門松列(2)
ユーザー 双六双六
提出日時 2020-07-22 14:43:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-06-11 19:49:15
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,976 KB
testcase_01 AC 57 ms
81,280 KB
testcase_02 AC 55 ms
80,768 KB
testcase_03 AC 55 ms
80,640 KB
testcase_04 AC 60 ms
80,768 KB
testcase_05 AC 59 ms
80,640 KB
testcase_06 AC 45 ms
60,928 KB
testcase_07 AC 47 ms
60,416 KB
testcase_08 AC 45 ms
61,312 KB
testcase_09 AC 59 ms
79,360 KB
testcase_10 AC 48 ms
65,408 KB
testcase_11 AC 49 ms
66,944 KB
testcase_12 AC 47 ms
64,384 KB
testcase_13 AC 46 ms
63,232 KB
testcase_14 AC 58 ms
79,616 KB
testcase_15 AC 46 ms
62,720 KB
testcase_16 AC 54 ms
71,296 KB
testcase_17 AC 48 ms
63,104 KB
testcase_18 AC 47 ms
67,200 KB
testcase_19 AC 49 ms
69,888 KB
testcase_20 AC 50 ms
71,168 KB
testcase_21 AC 54 ms
77,236 KB
testcase_22 AC 46 ms
65,792 KB
testcase_23 AC 54 ms
75,648 KB
testcase_24 AC 46 ms
67,456 KB
testcase_25 AC 48 ms
70,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	A = getlist()
	L = [0] * 101
	for i in A:
		L[i] += 1

	ans = 0
	for i in range(101):
		for j in range(i + 1, 101):
			for k in range(j + 1, 101):
				ans += L[i] * L[j] * L[k]

	print(ans % con)



if __name__ == '__main__':
	main()
0