結果

問題 No.1623 三角形の制作
ユーザー vwxyzvwxyz
提出日時 2024-07-17 06:26:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 141,096 KB
最終ジャッジ日時 2024-07-17 06:26:33
合計ジャッジ時間 5,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,264 KB
testcase_01 AC 49 ms
60,576 KB
testcase_02 AC 287 ms
104,284 KB
testcase_03 AC 336 ms
104,364 KB
testcase_04 AC 285 ms
104,216 KB
testcase_05 AC 392 ms
137,504 KB
testcase_06 AC 257 ms
82,696 KB
testcase_07 AC 318 ms
103,840 KB
testcase_08 AC 233 ms
85,820 KB
testcase_09 AC 290 ms
101,792 KB
testcase_10 AC 324 ms
126,740 KB
testcase_11 AC 291 ms
109,256 KB
testcase_12 AC 87 ms
97,040 KB
testcase_13 AC 94 ms
98,708 KB
testcase_14 AC 92 ms
95,844 KB
testcase_15 AC 165 ms
140,900 KB
testcase_16 AC 174 ms
141,096 KB
testcase_17 AC 193 ms
140,856 KB
testcase_18 AC 164 ms
137,812 KB
testcase_19 AC 107 ms
108,128 KB
testcase_20 AC 54 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()))
le=max(max(G)+max(B),max(R))+1
cnt=[0]*le
for r in R:
    cnt[r]+=1
cnt=[0]+cnt
for r in range(1,le+1):
    cnt[r]+=cnt[r-1]
ans=0
CG=Counter(G)
CB=Counter(B)
for g,cg in CG.items():
    for b,cb in CB.items():
        ans+=(cnt[g+b]-cnt[max(g,b)])*cg*cb
print(ans)
0