結果

問題 No.1623 三角形の制作
ユーザー ntudantuda
提出日時 2021-08-20 23:32:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 138,768 KB
最終ジャッジ日時 2024-10-14 07:26:10
合計ジャッジ時間 3,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 53 ms
60,416 KB
testcase_02 AC 146 ms
106,136 KB
testcase_03 AC 142 ms
105,472 KB
testcase_04 AC 142 ms
105,728 KB
testcase_05 AC 206 ms
138,768 KB
testcase_06 AC 90 ms
82,688 KB
testcase_07 AC 141 ms
105,600 KB
testcase_08 AC 89 ms
83,328 KB
testcase_09 AC 134 ms
102,860 KB
testcase_10 AC 182 ms
123,360 KB
testcase_11 AC 158 ms
109,760 KB
testcase_12 AC 86 ms
101,120 KB
testcase_13 AC 92 ms
102,400 KB
testcase_14 AC 89 ms
100,480 KB
testcase_15 AC 150 ms
136,320 KB
testcase_16 AC 150 ms
136,068 KB
testcase_17 AC 149 ms
135,684 KB
testcase_18 AC 157 ms
137,200 KB
testcase_19 AC 97 ms
108,928 KB
testcase_20 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
C = sorted(list(map(int,input().split())))

Amax = max(A)
AL = [0] * (Amax + 1)
BL = [0] * (Amax + 1)

for a in A:
    AL[a] += 1

for b in B:
    if b <= Amax:
        BL[b] += 1

CC = [0] * (Amax+1)
j = 0
temp = 0
for c in C:
    if c > Amax:
        break
    while j < c:
        j += 1
        CC[j] = CC[j-1]
    temp += 1
    CC[j] = temp
while j < Amax:
    j += 1
    CC[j] = CC[j-1]

ans = 0
for i in range(Amax + 1):
    for j in range(i + 1):
        ans += (CC[i] - CC[i - j]) * AL[i] * BL[j]
print(ans)
0