結果

問題 No.1623 三角形の制作
ユーザー MineMine
提出日時 2021-09-10 23:46:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 141,192 KB
最終ジャッジ日時 2024-06-12 05:47:26
合計ジャッジ時間 7,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,776 KB
testcase_01 AC 67 ms
59,648 KB
testcase_02 AC 389 ms
104,844 KB
testcase_03 AC 380 ms
104,860 KB
testcase_04 AC 384 ms
104,764 KB
testcase_05 AC 459 ms
137,424 KB
testcase_06 AC 331 ms
82,688 KB
testcase_07 AC 377 ms
104,664 KB
testcase_08 AC 327 ms
85,376 KB
testcase_09 AC 367 ms
102,400 KB
testcase_10 AC 419 ms
127,296 KB
testcase_11 AC 398 ms
110,988 KB
testcase_12 AC 102 ms
97,152 KB
testcase_13 AC 107 ms
98,560 KB
testcase_14 AC 105 ms
96,384 KB
testcase_15 AC 187 ms
141,188 KB
testcase_16 AC 187 ms
141,192 KB
testcase_17 AC 185 ms
141,192 KB
testcase_18 AC 186 ms
138,356 KB
testcase_19 AC 125 ms
108,416 KB
testcase_20 AC 50 ms
59,904 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()))
r = Counter(r)
g = Counter(g)
b = Counter(b)
acc = [0]*(3*10**3+1)
for i in range(1, 3*10**3+1):
    acc[i] += acc[i-1] + r[i]
ans = 0
for gg, gr in g.items():
    for bb, vb in b.items():
        ans += gr*vb*(acc[min(3*10**3, gg+bb-1)] - acc[max(gg-1, bb-1)])
print(ans)
0