結果

問題 No.1623 三角形の制作
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-23 21:54:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 142,252 KB
最終ジャッジ日時 2024-07-18 17:34:28
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
60,032 KB
testcase_01 AC 73 ms
61,568 KB
testcase_02 AC 139 ms
106,072 KB
testcase_03 AC 136 ms
106,112 KB
testcase_04 AC 135 ms
106,112 KB
testcase_05 AC 186 ms
135,744 KB
testcase_06 AC 92 ms
80,652 KB
testcase_07 AC 136 ms
105,708 KB
testcase_08 AC 97 ms
82,944 KB
testcase_09 AC 132 ms
102,520 KB
testcase_10 AC 168 ms
120,920 KB
testcase_11 AC 150 ms
107,888 KB
testcase_12 AC 112 ms
98,884 KB
testcase_13 AC 116 ms
101,888 KB
testcase_14 AC 119 ms
100,864 KB
testcase_15 AC 176 ms
134,840 KB
testcase_16 AC 175 ms
135,004 KB
testcase_17 AC 179 ms
135,004 KB
testcase_18 AC 187 ms
142,252 KB
testcase_19 AC 132 ms
109,056 KB
testcase_20 AC 73 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

import bisect
n = int(input())

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

MM = 3001
rx = [0] * MM
gx = [0] * MM
bx = [0] * MM

for i in r:
    rx[i] += 1
for i in g:
    gx[i] += 1
for i in b:
    bx[i] += 1

for i in range(MM-1):
    bx[i+1] += bx[i]

ans = 0
for i in range(MM):
    for j in range(i+1):

        minlen = i - j
        ans += (bx[i] - bx[minlen]) * rx[i] * gx[j]

print (ans)
    
0