結果

問題 No.1623 三角形の制作
ユーザー tamatotamato
提出日時 2021-07-23 21:30:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 141,312 KB
最終ジャッジ日時 2024-07-18 17:05:12
合計ジャッジ時間 6,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
64,000 KB
testcase_01 AC 163 ms
64,640 KB
testcase_02 AC 237 ms
105,216 KB
testcase_03 AC 236 ms
104,832 KB
testcase_04 AC 228 ms
105,216 KB
testcase_05 AC 290 ms
140,936 KB
testcase_06 AC 195 ms
82,304 KB
testcase_07 AC 230 ms
104,960 KB
testcase_08 AC 194 ms
84,736 KB
testcase_09 AC 227 ms
102,144 KB
testcase_10 AC 270 ms
119,756 KB
testcase_11 AC 247 ms
107,216 KB
testcase_12 AC 215 ms
100,224 KB
testcase_13 AC 220 ms
101,248 KB
testcase_14 AC 222 ms
100,224 KB
testcase_15 AC 287 ms
139,248 KB
testcase_16 AC 290 ms
139,868 KB
testcase_17 AC 290 ms
139,492 KB
testcase_18 AC 284 ms
141,312 KB
testcase_19 AC 230 ms
108,416 KB
testcase_20 AC 169 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
M = 3*10**3


def main():
    import sys
    input = sys.stdin.readline

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

    RR = [0] * (M+1)
    GG = [0] * (M+1)
    BB = [0] * (M+1)
    for i in range(N):
        RR[R[i]] += 1
        GG[G[i]] += 1
        BB[B[i]] += 1

    ans = 0
    cs_RR = [0] * (M+2)
    for i in range(M+1):
        cs_RR[i+1] = cs_RR[i] + RR[i]
    for i in range(M+1):
        for j in range(M+1):
            gb = GG[i] * BB[j]
            ans += gb * (cs_RR[min(M, i+j-1) + 1] - cs_RR[max(i, j)])

    print(ans)
    #print(RR)
    #print(GG)
    #print(BB)
    #print(cs_RR)


if __name__ == '__main__':
    main()
0