結果

問題 No.1623 三角形の制作
ユーザー moshi777moshi777
提出日時 2021-07-23 23:04:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 597 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 146,076 KB
最終ジャッジ日時 2024-07-18 20:28:33
合計ジャッジ時間 13,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 99 ms
97,280 KB
testcase_13 AC 95 ms
98,944 KB
testcase_14 AC 92 ms
96,512 KB
testcase_15 AC 159 ms
141,232 KB
testcase_16 AC 156 ms
141,368 KB
testcase_17 AC 165 ms
141,760 KB
testcase_18 AC 157 ms
138,696 KB
testcase_19 AC 108 ms
108,800 KB
testcase_20 AC 42 ms
54,016 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)

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

#print(rdd, gdd)

ans = 0
for r, rv in rdd.items():
    for g, gv in gdd.items():
        #print(r, rv, g, gv)
        if r < g:
            continue
        add = rv*gv*(bisect_right(B, r) - bisect_right(B, r-g))
        # print(add)
        ans += max(0, add)

print(ans)
0