結果

問題 No.1623 三角形の制作
ユーザー lloyzlloyz
提出日時 2021-12-08 22:08:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 138,324 KB
最終ジャッジ日時 2024-07-16 09:59:27
合計ジャッジ時間 4,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,916 KB
testcase_01 AC 49 ms
62,840 KB
testcase_02 AC 250 ms
105,004 KB
testcase_03 AC 248 ms
104,064 KB
testcase_04 AC 252 ms
104,496 KB
testcase_05 AC 293 ms
138,296 KB
testcase_06 AC 210 ms
83,184 KB
testcase_07 AC 254 ms
104,544 KB
testcase_08 AC 214 ms
85,736 KB
testcase_09 AC 240 ms
101,064 KB
testcase_10 AC 278 ms
128,256 KB
testcase_11 AC 257 ms
110,340 KB
testcase_12 AC 83 ms
95,988 KB
testcase_13 AC 87 ms
98,816 KB
testcase_14 AC 83 ms
96,056 KB
testcase_15 AC 143 ms
136,616 KB
testcase_16 AC 140 ms
136,364 KB
testcase_17 AC 145 ms
137,104 KB
testcase_18 AC 149 ms
138,324 KB
testcase_19 AC 100 ms
108,452 KB
testcase_20 AC 47 ms
64,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
from collections import defaultdict

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

R_len_cnt = [0 for _ in range(3001)]
G_len_cnt = [0 for _ in range(3001)]
B_len_cnt = [0 for _ in range(3001)]
for i in range(n):
    R_len_cnt[R[i]] += 1
    G_len_cnt[G[i]] += 1
    B_len_cnt[B[i]] += 1
accumR_len_cnt = [0 for _ in range(3001)]
for i in range(3000):
    accumR_len_cnt[i + 1] += accumR_len_cnt[i] + R_len_cnt[i + 1]
ans = 0
for i in range(1, 3001):
    if G_len_cnt[i] == 0:
        continue
    for j in range(1, 3001):
        if B_len_cnt[j] == 0:
            continue
        ans += G_len_cnt[i] * B_len_cnt[j] * (accumR_len_cnt[min(i + j, 3001) - 1] - accumR_len_cnt[max(i, j) - 1])
print(ans)

0