結果

問題 No.1623 三角形の制作
ユーザー moshi777moshi777
提出日時 2021-07-23 23:14:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 765 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 141,760 KB
最終ジャッジ日時 2024-07-18 21:02:22
合計ジャッジ時間 25,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 182 ms
76,800 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1,936 ms
83,712 KB
testcase_07 TLE -
testcase_08 AC 1,967 ms
85,888 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 141 ms
96,768 KB
testcase_13 AC 177 ms
98,816 KB
testcase_14 AC 174 ms
96,512 KB
testcase_15 AC 223 ms
141,760 KB
testcase_16 AC 219 ms
141,508 KB
testcase_17 AC 170 ms
141,512 KB
testcase_18 AC 279 ms
138,696 KB
testcase_19 AC 106 ms
108,544 KB
testcase_20 AC 43 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_right, bisect_left
N = int(input())

R = list(map(int, input().split()))
G = list(map(int, input().split()))
B = list(map(int, input().split()))

B.sort()

#rdd = defaultdict(int)
#gdd = defaultdict(int)

rnum = [0]*(3*10**3+1)
gnum = [0]*(3*10**3+1)

for i in range(N):
    # rdd[R[i]] += 1
    # gdd[G[i]] += 1
    rnum[R[i]] += 1
    gnum[G[i]] += 1

# print(rdd, gdd)
ans = 0
maxR = max(R)
for i in range(1, maxR+1):
    for j in range(1, i+1):
        add = rnum[i]*gnum[j]*(bisect_right(B, i) - bisect_right(B, i-j))
        ans += add
        """
        if r < g:
            continue
        add = rv*gv*(bisect_right(B, r) - bisect_right(B, r-g))
        # print(add)

        """

print(ans)
0