結果

問題 No.1623 三角形の制作
ユーザー dangodango
提出日時 2023-07-15 19:21:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 141,532 KB
最終ジャッジ日時 2024-09-17 04:06:38
合計ジャッジ時間 5,517 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,204 KB
testcase_01 AC 40 ms
58,572 KB
testcase_02 AC 235 ms
105,864 KB
testcase_03 AC 243 ms
106,144 KB
testcase_04 AC 234 ms
105,808 KB
testcase_05 AC 289 ms
141,532 KB
testcase_06 AC 195 ms
82,864 KB
testcase_07 AC 233 ms
106,084 KB
testcase_08 AC 202 ms
85,356 KB
testcase_09 AC 226 ms
103,408 KB
testcase_10 AC 262 ms
121,108 KB
testcase_11 AC 248 ms
108,016 KB
testcase_12 AC 78 ms
100,484 KB
testcase_13 AC 82 ms
102,424 KB
testcase_14 AC 86 ms
100,768 KB
testcase_15 AC 145 ms
133,956 KB
testcase_16 AC 144 ms
134,196 KB
testcase_17 AC 144 ms
134,412 KB
testcase_18 AC 149 ms
135,112 KB
testcase_19 AC 98 ms
109,132 KB
testcase_20 AC 41 ms
58,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    r = list(map(int, input().split()))
    g = list(map(int, input().split()))
    b = list(map(int, input().split()))
    rn = [0] * 3001
    gn = [0] * 3001
    bn = [0] * 3001
    for i in range(n):
        rn[r[i]] += 1
    for i in range(n):
        gn[g[i]] += 1
    for i in range(n):
        bn[b[i]] += 1
    cumR = [0] * 3001
    for r in range(1, 3001):
        cumR[r] = cumR[r - 1] + rn[r]
    ans = 0
    for g in range(1, 3001):
        if gn[g] != 0:
            for b in range(1, 3001):
                if bn[b] != 0:
                    ans += gn[g] * bn[b] * (cumR[min(g + b - 1, 3000)] - cumR[max(g, b) - 1])
    print(ans)
main()
0