結果

問題 No.1623 三角形の制作
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-23 22:53:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 209,996 KB
最終ジャッジ日時 2024-07-18 19:08:56
合計ジャッジ時間 8,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
201,856 KB
testcase_01 AC 309 ms
201,856 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 324 ms
192,440 KB
testcase_13 AC 337 ms
193,496 KB
testcase_14 AC 334 ms
194,252 KB
testcase_15 AC 370 ms
207,136 KB
testcase_16 AC 366 ms
207,396 KB
testcase_17 AC 356 ms
207,524 KB
testcase_18 AC 380 ms
204,812 KB
testcase_19 AC 315 ms
193,384 KB
testcase_20 AC 366 ms
201,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
M = 4*10**3+5
R = [0]*M
G = [0]*M
B = [0]*M
for r in map(int,input().split()):
    R[r] += 1
for g in map(int,input().split()):
    G[g] += 1
for b in map(int,input().split()):
    B[b] += 1

GB = [[0]*M for i in range(M)]
for i in range(M//2):
    for j in range(M//2):
        GB[max(i,j)][i+j] += G[i]*B[j]

for i in range(1,M):
    R[i] += R[i-1]

ans = 0
for i in range(M):
    for j in range(i,M):
        ans += (R[j-1]-R[i-1])*GB[i][j]
print(ans)
0