結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-19 22:04:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 4,000 ms
コード長 429 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 111,456 KB
最終ジャッジ日時 2024-05-09 17:21:07
合計ジャッジ時間 2,629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,672 KB
testcase_01 AC 49 ms
61,312 KB
testcase_02 AC 47 ms
60,544 KB
testcase_03 AC 56 ms
62,976 KB
testcase_04 AC 54 ms
62,848 KB
testcase_05 AC 55 ms
63,104 KB
testcase_06 AC 55 ms
63,488 KB
testcase_07 AC 57 ms
62,976 KB
testcase_08 AC 53 ms
65,152 KB
testcase_09 AC 53 ms
64,896 KB
testcase_10 AC 53 ms
65,152 KB
testcase_11 AC 55 ms
66,304 KB
testcase_12 AC 53 ms
66,048 KB
testcase_13 AC 89 ms
85,888 KB
testcase_14 AC 77 ms
80,720 KB
testcase_15 AC 104 ms
94,980 KB
testcase_16 AC 109 ms
94,720 KB
testcase_17 AC 98 ms
90,424 KB
testcase_18 AC 105 ms
91,136 KB
testcase_19 AC 98 ms
90,880 KB
testcase_20 AC 152 ms
111,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
a=list(map(int,input().split()))
a.sort()
cnt=[0]*(2*10**5+100)
wa=[0]*(n+3)
for i in range(n-1,-1,-1):
    cnt[a[i]]+=1
    wa[i]=wa[i+1]+a[i]
for i in range(2*10**5,-1,-1):
    cnt[i]+=cnt[i+1]
ans=0
for i in range(n):
    res=0
    res+=a[i]*(n-1-i)
    res-=wa[i+1]
    for p in range(a[i],2*10**5+1,a[i]):
        if p==a[i]:res+=a[i]*(cnt[p]-1)
        else:res+=a[i]*cnt[p]

    ans+=res
print(ans)






0