結果

問題 No.1623 三角形の制作
ユーザー yosakayosaka
提出日時 2021-07-30 19:43:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 141,276 KB
最終ジャッジ日時 2024-09-15 19:27:56
合計ジャッジ時間 7,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,752 KB
testcase_01 AC 48 ms
58,624 KB
testcase_02 AC 460 ms
104,348 KB
testcase_03 AC 477 ms
104,100 KB
testcase_04 AC 480 ms
104,124 KB
testcase_05 AC 520 ms
136,904 KB
testcase_06 AC 427 ms
82,432 KB
testcase_07 AC 479 ms
103,904 KB
testcase_08 AC 436 ms
85,376 KB
testcase_09 AC 475 ms
101,760 KB
testcase_10 AC 492 ms
126,808 KB
testcase_11 AC 503 ms
110,848 KB
testcase_12 AC 100 ms
97,152 KB
testcase_13 AC 105 ms
99,072 KB
testcase_14 AC 103 ms
96,128 KB
testcase_15 AC 182 ms
141,276 KB
testcase_16 AC 181 ms
140,892 KB
testcase_17 AC 182 ms
140,880 KB
testcase_18 AC 178 ms
137,712 KB
testcase_19 AC 120 ms
108,672 KB
testcase_20 AC 48 ms
58,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def main():
    n = int(input())
    R = list(map(int, input().split()))
    G = list(map(int, input().split()))
    B = list(map(int, input().split()))
    # R.sort()
    # G.sort()
    # B.sort()
    Rc = Counter(R)
    Gc = Counter(G)
    Bc = Counter(B)
    S = [0] * 10 ** 4
    for r in Rc.keys():
        S[r] += Rc[r]
    for i in range(len(S)):
        S[i] += S[i - 1]
    ans = 0
    for g in Gc.keys():
        for b in Bc.keys():
            ans += Gc[g] * Bc[b] * (S[g + b - 1] - S[max(g, b) - 1])
    print(ans)


main()
0