結果

問題 No.1623 三角形の制作
ユーザー 👑 rin204rin204
提出日時 2022-01-18 02:47:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 136,192 KB
最終ジャッジ日時 2024-11-23 13:11:31
合計ジャッジ時間 5,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,240 KB
testcase_01 AC 42 ms
58,752 KB
testcase_02 AC 125 ms
106,064 KB
testcase_03 AC 123 ms
105,964 KB
testcase_04 AC 123 ms
105,996 KB
testcase_05 AC 180 ms
136,192 KB
testcase_06 AC 85 ms
80,128 KB
testcase_07 AC 124 ms
106,112 KB
testcase_08 AC 83 ms
82,560 KB
testcase_09 AC 117 ms
103,040 KB
testcase_10 AC 153 ms
120,548 KB
testcase_11 AC 137 ms
108,112 KB
testcase_12 AC 81 ms
100,224 KB
testcase_13 AC 89 ms
102,528 KB
testcase_14 AC 86 ms
101,248 KB
testcase_15 AC 147 ms
134,952 KB
testcase_16 AC 146 ms
134,396 KB
testcase_17 AC 145 ms
134,448 KB
testcase_18 AC 150 ms
136,112 KB
testcase_19 AC 96 ms
109,312 KB
testcase_20 AC 40 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cr = [0] * 3001
cg = [0] * 3001
cb = [0] * 3001
for r in R: cr[r] += 1
for g in G: cg[g] += 1
for b in B: cb[b] += 1

for i in range(1, 3001):
    cb[i] += cb[i - 1]
ans = 0
for i in range(1, 3001):
    if cr[i] == 0: continue
    for j in range(1, i + 1):
        ans += cr[i] * cg[j] * (cb[i] - cb[i - j])
print(ans)
0