結果

問題 No.1623 三角形の制作
ユーザー noriocnorioc
提出日時 2022-05-18 20:05:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 141,292 KB
最終ジャッジ日時 2024-09-16 23:19:58
合計ジャッジ時間 5,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,740 KB
testcase_01 AC 40 ms
60,492 KB
testcase_02 AC 231 ms
104,824 KB
testcase_03 AC 211 ms
104,388 KB
testcase_04 AC 225 ms
104,328 KB
testcase_05 AC 282 ms
137,512 KB
testcase_06 AC 186 ms
83,360 KB
testcase_07 AC 217 ms
104,416 KB
testcase_08 AC 181 ms
86,036 KB
testcase_09 AC 217 ms
102,160 KB
testcase_10 AC 244 ms
127,524 KB
testcase_11 AC 223 ms
109,788 KB
testcase_12 AC 79 ms
97,360 KB
testcase_13 AC 81 ms
98,828 KB
testcase_14 AC 75 ms
96,492 KB
testcase_15 AC 150 ms
141,292 KB
testcase_16 AC 164 ms
141,292 KB
testcase_17 AC 156 ms
141,276 KB
testcase_18 AC 146 ms
138,252 KB
testcase_19 AC 90 ms
108,888 KB
testcase_20 AC 35 ms
59,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from itertools import accumulate

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

size = 3010
bs = [0] * size
for b in B:
    bs[b] += 1
cum = list(accumulate(bs))

rs = Counter(R)
gs = Counter(G)
ans = 0
for r in rs:
    for g in range(1, r+1):
        if gs[g] == 0: continue
        ans += (cum[r] - cum[r-g]) * rs[r] * gs[g]

print(ans)
0