結果

問題 No.1233 割り切れない気持ち
ユーザー NoneNone
提出日時 2021-03-16 01:45:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 414 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 124,288 KB
最終ジャッジ日時 2024-11-07 13:58:02
合計ジャッジ時間 13,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,344 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 56 ms
62,848 KB
testcase_04 AC 55 ms
62,080 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 40 ms
52,736 KB
testcase_07 AC 100 ms
86,016 KB
testcase_08 AC 118 ms
94,080 KB
testcase_09 AC 161 ms
111,488 KB
testcase_10 AC 171 ms
116,224 KB
testcase_11 AC 96 ms
84,736 KB
testcase_12 AC 187 ms
122,240 KB
testcase_13 AC 187 ms
121,984 KB
testcase_14 AC 184 ms
106,880 KB
testcase_15 AC 187 ms
122,112 KB
testcase_16 AC 189 ms
121,216 KB
testcase_17 AC 93 ms
98,944 KB
testcase_18 AC 152 ms
120,320 KB
testcase_19 AC 121 ms
120,576 KB
testcase_20 AC 90 ms
98,432 KB
testcase_21 AC 122 ms
104,320 KB
testcase_22 AC 123 ms
103,936 KB
testcase_23 AC 122 ms
103,936 KB
testcase_24 AC 123 ms
104,192 KB
testcase_25 AC 124 ms
104,576 KB
testcase_26 AC 123 ms
104,064 KB
testcase_27 AC 451 ms
121,472 KB
testcase_28 AC 430 ms
120,704 KB
testcase_29 AC 403 ms
120,960 KB
testcase_30 AC 386 ms
121,472 KB
testcase_31 AC 375 ms
121,088 KB
testcase_32 AC 359 ms
121,472 KB
testcase_33 AC 344 ms
120,832 KB
testcase_34 AC 333 ms
120,832 KB
testcase_35 AC 325 ms
120,960 KB
testcase_36 AC 535 ms
120,960 KB
testcase_37 AC 41 ms
52,096 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def min2(x,y):
    return x if x < y else y


import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int, input().split()))
A.sort()
M=max(A)
S=[0]*(M+1)
for a in A:
    S[a]+=1
C=[0]
for a in S:
    C.append(C[-1]+a)

res=N*sum(A)
for i in range(N):
    l,r=0,A[i]-1
    for k in range(1,M+1):
        l+=A[i]
        r+=A[i]
        if l>M: break
        res-=(C[min2(r+1,M+1)]-C[l])*k*A[i]

print(res)
0