結果

問題 No.118 門松列(2)
ユーザー mlihua09mlihua09
提出日時 2020-09-17 17:08:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 74,152 KB
最終ジャッジ日時 2024-06-22 06:39:55
合計ジャッジ時間 2,599 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,564 KB
testcase_01 AC 53 ms
73,912 KB
testcase_02 AC 56 ms
74,152 KB
testcase_03 AC 50 ms
73,380 KB
testcase_04 AC 52 ms
73,924 KB
testcase_05 AC 54 ms
73,476 KB
testcase_06 AC 41 ms
60,644 KB
testcase_07 AC 43 ms
60,420 KB
testcase_08 AC 42 ms
61,740 KB
testcase_09 AC 50 ms
72,884 KB
testcase_10 AC 43 ms
63,272 KB
testcase_11 AC 43 ms
64,444 KB
testcase_12 AC 42 ms
63,888 KB
testcase_13 AC 44 ms
61,516 KB
testcase_14 AC 50 ms
71,964 KB
testcase_15 AC 43 ms
60,828 KB
testcase_16 AC 46 ms
67,124 KB
testcase_17 AC 40 ms
62,324 KB
testcase_18 AC 43 ms
65,656 KB
testcase_19 AC 44 ms
66,640 KB
testcase_20 AC 47 ms
66,920 KB
testcase_21 AC 51 ms
71,556 KB
testcase_22 AC 46 ms
63,524 KB
testcase_23 AC 51 ms
70,476 KB
testcase_24 AC 44 ms
64,620 KB
testcase_25 AC 45 ms
65,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

A = [0] * 100

for a in map(int, input().split()):
    A[a - 1] += 1
    
ans = 0
mod = 10 ** 9 + 7

for i in range(100):
    
    for j in range(i):
        
        for k in range(j):
            
            ans += A[i] * A[j] * A[k]
            ans %= mod
            
print(ans)
0