結果

問題 No.1623 三角形の制作
ユーザー playerplayer
提出日時 2023-12-20 02:18:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 142,024 KB
最終ジャッジ日時 2024-09-27 09:19:52
合計ジャッジ時間 12,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 388 ms
70,376 KB
testcase_01 AC 390 ms
70,496 KB
testcase_02 AC 461 ms
105,316 KB
testcase_03 AC 459 ms
104,912 KB
testcase_04 AC 458 ms
105,136 KB
testcase_05 AC 519 ms
138,008 KB
testcase_06 AC 406 ms
83,552 KB
testcase_07 AC 455 ms
104,932 KB
testcase_08 AC 403 ms
86,060 KB
testcase_09 AC 443 ms
102,208 KB
testcase_10 AC 486 ms
128,128 KB
testcase_11 AC 470 ms
111,392 KB
testcase_12 AC 434 ms
97,424 KB
testcase_13 AC 438 ms
99,172 KB
testcase_14 AC 437 ms
96,592 KB
testcase_15 AC 514 ms
142,024 KB
testcase_16 AC 513 ms
141,788 KB
testcase_17 AC 512 ms
141,652 KB
testcase_18 AC 510 ms
138,684 KB
testcase_19 AC 456 ms
108,648 KB
testcase_20 AC 388 ms
70,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def main():
    n = int(input())
    r = list(map(int,input().split()))
    g = list(map(int,input().split()))
    b = list(map(int,input().split()))
    dg,db,dr = defaultdict(int),defaultdict(int),defaultdict(int)
    for i in range(n):
        dg[g[i]] += 1
        db[b[i]] += 1
        dr[r[i]] += 1
    acc = [0]*(3001)
    for i in range(1,3001):
        if i not in dr:
            acc[i] += acc[i-1]
        else:
            acc[i] += acc[i-1]+dr[i]
    ans = 0
    for i in range(1,3001):
        for j in range(1,3001):
            ans += dg[i]*db[j]*(acc[min(i+j-1,3000)]-acc[max(i,j)-1])
            
    
    print(ans)
    
if __name__ == '__main__':
    main()
0