結果

問題 No.118 門松列(2)
ユーザー roarisroaris
提出日時 2019-12-22 12:17:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-09-14 03:01:24
合計ジャッジ時間 2,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
62,720 KB
testcase_01 AC 64 ms
80,640 KB
testcase_02 AC 65 ms
80,512 KB
testcase_03 AC 64 ms
80,640 KB
testcase_04 AC 66 ms
80,512 KB
testcase_05 AC 65 ms
80,896 KB
testcase_06 AC 47 ms
60,160 KB
testcase_07 AC 46 ms
59,904 KB
testcase_08 AC 49 ms
61,056 KB
testcase_09 AC 63 ms
78,848 KB
testcase_10 AC 50 ms
65,280 KB
testcase_11 AC 53 ms
66,432 KB
testcase_12 AC 50 ms
64,256 KB
testcase_13 AC 50 ms
63,104 KB
testcase_14 AC 65 ms
78,816 KB
testcase_15 AC 49 ms
61,824 KB
testcase_16 AC 57 ms
70,912 KB
testcase_17 AC 49 ms
62,720 KB
testcase_18 AC 54 ms
66,816 KB
testcase_19 AC 55 ms
69,760 KB
testcase_20 AC 57 ms
70,784 KB
testcase_21 AC 61 ms
76,288 KB
testcase_22 AC 52 ms
65,408 KB
testcase_23 AC 60 ms
74,880 KB
testcase_24 AC 52 ms
67,328 KB
testcase_25 AC 55 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
cnt = [0]*101

for Ai in A:
    cnt[Ai] += 1

ans = 0
MOD = 10**9+7

for i in range(101):
    for j in range(i+1, 101):
        for k in range(j+1, 101):
            ans += cnt[i]*cnt[j]*cnt[k]
            ans %= MOD

print(ans)
0