結果

問題 No.1623 三角形の制作
ユーザー KazunKazun
提出日時 2021-08-14 00:24:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 135,608 KB
最終ジャッジ日時 2024-10-04 01:24:10
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 45 ms
61,056 KB
testcase_02 AC 126 ms
105,752 KB
testcase_03 AC 123 ms
105,636 KB
testcase_04 AC 123 ms
106,076 KB
testcase_05 AC 170 ms
135,576 KB
testcase_06 AC 83 ms
80,000 KB
testcase_07 AC 123 ms
105,608 KB
testcase_08 AC 88 ms
82,460 KB
testcase_09 AC 128 ms
102,808 KB
testcase_10 AC 152 ms
120,872 KB
testcase_11 AC 148 ms
107,644 KB
testcase_12 AC 80 ms
100,480 KB
testcase_13 AC 85 ms
102,016 KB
testcase_14 AC 81 ms
100,556 KB
testcase_15 AC 147 ms
134,664 KB
testcase_16 AC 140 ms
134,996 KB
testcase_17 AC 139 ms
134,356 KB
testcase_18 AC 145 ms
135,608 KB
testcase_19 AC 88 ms
109,248 KB
testcase_20 AC 34 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#How many (r,g,b) st r>g+b ?

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

M=max(max(R),max(G),max(B))
X=[0]*(M+1); Y=[0]*(M+1); Z=[0]*(M+1)

for i in range(N):
    X[R[i]]+=1
    Y[G[i]]+=1
    Z[B[i]]+=1

Z_cum=[0]*(M+1)
for i in range(1,M+1):
    Z_cum[i]=Z_cum[i-1]+Z[i]

K=0
for a in range(1,M+1):
    for b in range(1,a+1):
        p=a-b
        K+=X[a]*Y[b]*(Z_cum[a]-Z_cum[p])

print(K)
0