結果

問題 No.1623 三角形の制作
ユーザー H20H20
提出日時 2021-07-23 22:05:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 142,392 KB
最終ジャッジ日時 2024-07-18 17:50:25
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
60,160 KB
testcase_01 AC 90 ms
61,952 KB
testcase_02 AC 151 ms
105,856 KB
testcase_03 AC 148 ms
105,856 KB
testcase_04 AC 148 ms
106,368 KB
testcase_05 AC 202 ms
135,804 KB
testcase_06 AC 104 ms
80,608 KB
testcase_07 AC 148 ms
106,024 KB
testcase_08 AC 107 ms
82,688 KB
testcase_09 AC 143 ms
102,784 KB
testcase_10 AC 182 ms
120,752 KB
testcase_11 AC 164 ms
107,908 KB
testcase_12 AC 126 ms
100,612 KB
testcase_13 AC 131 ms
102,656 KB
testcase_14 AC 127 ms
100,968 KB
testcase_15 AC 191 ms
134,368 KB
testcase_16 AC 190 ms
134,468 KB
testcase_17 AC 196 ms
134,596 KB
testcase_18 AC 199 ms
142,392 KB
testcase_19 AC 144 ms
109,156 KB
testcase_20 AC 81 ms
60,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n = int(input())
R = list(map(int,input().split()))
G = list(map(int,input().split()))
B = list(map(int,input().split()))
RL = [0]*(3*10**3+10)
GL = [0]*(3*10**3+10)
BL = [0]*(3*10**3+10)
for r in R:
    RL[r]+=1
for g in G:
    GL[g]+=1
for b in B:
    BL[b]+=1
BLAC = list(itertools.accumulate(BL)) + [0]
ans = 0
for i in range(1,3001):
    for j in range(1,i+1):
        l = i-j+1
        r = i
        ans+=RL[i]*GL[j]*(BLAC[r]-BLAC[l-1])
print(ans)
0