結果

問題 No.1623 三角形の制作
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-10 09:24:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 851 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 216,080 KB
最終ジャッジ日時 2024-11-26 13:55:57
合計ジャッジ時間 33,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 OLE -
testcase_03 OLE -
testcase_04 OLE -
testcase_05 OLE -
testcase_06 OLE -
testcase_07 OLE -
testcase_08 OLE -
testcase_09 OLE -
testcase_10 OLE -
testcase_11 OLE -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# max(g,b) <= r < g+b
from bisect import bisect_left as bl , bisect_right as br
from collections import Counter

n = int(input())
r = list(map(int,input().split()))
g = list(map(int,input().split()))
b = list(map(int,input().split()))

rs=sorted(tuple(Counter(r).items()))
gs=sorted(tuple(Counter(g).items()))
bs=sorted(tuple(Counter(b).items()))
rcnt = [0]
for i in range(len(rs)):
    rcnt.append(rcnt[-1]+rs[i][1])

rk = [0]+[i for i,j in rs]

ans=0
for i in range(len(gs)):
    for j in range(len(bs)):
        y=gs[i][0]+bs[j][0]
        x=max(gs[i][0],bs[j][0])
        if x >= y:
            continue
        
        xind,yind=bl(rk,x),bl(rk,y)
        xind=max(xind-1,0)
        yind=max(yind-1,0)
        
        t1=rcnt[yind]-rcnt[xind]
        print(t1,gs[i][1],bs[j][1])
        ans += t1*gs[i][1]*bs[j][1]
        
print(ans)
        

0