結果

問題 No.118 門松列(2)
ユーザー maspymaspy
提出日時 2020-01-29 19:03:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 478 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 46,760 KB
最終ジャッジ日時 2024-09-16 01:56:21
合計ジャッジ時間 15,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 456 ms
43,816 KB
testcase_01 AC 462 ms
46,116 KB
testcase_02 AC 478 ms
45,868 KB
testcase_03 AC 472 ms
46,504 KB
testcase_04 AC 475 ms
46,632 KB
testcase_05 AC 477 ms
46,760 KB
testcase_06 AC 464 ms
44,200 KB
testcase_07 AC 456 ms
44,080 KB
testcase_08 AC 447 ms
44,076 KB
testcase_09 AC 473 ms
45,992 KB
testcase_10 AC 445 ms
44,076 KB
testcase_11 AC 455 ms
43,944 KB
testcase_12 AC 461 ms
43,948 KB
testcase_13 AC 452 ms
44,200 KB
testcase_14 AC 473 ms
45,612 KB
testcase_15 AC 457 ms
43,944 KB
testcase_16 AC 472 ms
44,844 KB
testcase_17 AC 466 ms
44,456 KB
testcase_18 AC 473 ms
44,200 KB
testcase_19 AC 468 ms
44,460 KB
testcase_20 AC 460 ms
44,464 KB
testcase_21 AC 466 ms
45,476 KB
testcase_22 AC 462 ms
44,456 KB
testcase_23 AC 464 ms
45,100 KB
testcase_24 AC 454 ms
43,944 KB
testcase_25 AC 462 ms
44,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(readline())
A = np.array(read().split(),np.int64)

cnt = np.bincount(A)

two = cnt * (cnt-1) // 2 * (N-cnt)
three = cnt * (cnt-1) * (cnt-2) // 6

x = N * (N-1) * (N-2) // 6
x -= (two + three).sum()

MOD = 10**9 + 7
print(x % MOD)
0