結果

問題 No.1623 三角形の制作
ユーザー flippergoflippergo
提出日時 2024-10-13 11:06:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 141,984 KB
最終ジャッジ日時 2024-10-13 11:06:31
合計ジャッジ時間 5,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
59,904 KB
testcase_01 AC 68 ms
61,184 KB
testcase_02 AC 127 ms
105,840 KB
testcase_03 AC 126 ms
105,600 KB
testcase_04 AC 124 ms
105,740 KB
testcase_05 AC 177 ms
135,748 KB
testcase_06 AC 81 ms
79,616 KB
testcase_07 AC 150 ms
106,212 KB
testcase_08 AC 108 ms
82,048 KB
testcase_09 AC 118 ms
103,040 KB
testcase_10 AC 155 ms
120,260 KB
testcase_11 AC 137 ms
107,504 KB
testcase_12 AC 122 ms
100,480 KB
testcase_13 AC 114 ms
102,008 KB
testcase_14 AC 111 ms
100,896 KB
testcase_15 AC 172 ms
134,608 KB
testcase_16 AC 172 ms
134,508 KB
testcase_17 AC 180 ms
134,384 KB
testcase_18 AC 208 ms
141,984 KB
testcase_19 AC 121 ms
108,800 KB
testcase_20 AC 68 ms
59,904 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]*(3000+1)
Cg = [0]*(3000+1)
Cb = [0]*(3000+1)
for i in range(N):
    Cr[R[i]] += 1
    Cg[G[i]] += 1
    Cb[B[i]] += 1
cumb = [0]*(3000+1)
for i in range(1,3000+1):
    cumb[i] = cumb[i-1]+Cb[i]
ans = 0
for r in range(1,3000+1):
    for g in range(1,r+1):
        ans += Cr[r]*Cg[g]*(cumb[r]-cumb[r-g])
print(ans)
0