結果

問題 No.1233 割り切れない気持ち
ユーザー AEnAEn
提出日時 2022-12-17 19:25:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 441 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 214,096 KB
最終ジャッジ日時 2024-11-17 04:32:16
合計ジャッジ時間 25,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
67,584 KB
testcase_01 AC 52 ms
62,284 KB
testcase_02 AC 65 ms
62,848 KB
testcase_03 AC 85 ms
64,768 KB
testcase_04 AC 80 ms
64,512 KB
testcase_05 AC 64 ms
62,336 KB
testcase_06 AC 69 ms
62,464 KB
testcase_07 AC 115 ms
79,744 KB
testcase_08 AC 125 ms
88,704 KB
testcase_09 AC 158 ms
102,656 KB
testcase_10 AC 157 ms
105,856 KB
testcase_11 AC 111 ms
77,696 KB
testcase_12 AC 167 ms
109,440 KB
testcase_13 AC 176 ms
109,136 KB
testcase_14 AC 168 ms
109,568 KB
testcase_15 AC 164 ms
109,312 KB
testcase_16 AC 165 ms
109,696 KB
testcase_17 TLE -
testcase_18 AC 159 ms
109,400 KB
testcase_19 AC 107 ms
109,824 KB
testcase_20 AC 81 ms
101,632 KB
testcase_21 AC 2,091 ms
108,160 KB
testcase_22 AC 1,720 ms
108,416 KB
testcase_23 AC 1,465 ms
107,904 KB
testcase_24 AC 1,269 ms
108,132 KB
testcase_25 AC 1,129 ms
108,032 KB
testcase_26 AC 1,018 ms
107,756 KB
testcase_27 AC 923 ms
108,488 KB
testcase_28 AC 1,156 ms
108,740 KB
testcase_29 AC 786 ms
108,732 KB
testcase_30 AC 736 ms
108,928 KB
testcase_31 AC 690 ms
108,904 KB
testcase_32 AC 650 ms
109,036 KB
testcase_33 AC 619 ms
108,580 KB
testcase_34 AC 595 ms
108,900 KB
testcase_35 AC 570 ms
108,800 KB
testcase_36 AC 538 ms
108,492 KB
testcase_37 AC 49 ms
62,336 KB
testcase_38 AC 83 ms
100,864 KB
testcase_39 AC 129 ms
108,032 KB
testcase_40 AC 129 ms
214,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = [0]*(2*10**5+5)
sm = [0]*(2*10**5+5)
for i in range(N):
    cnt[A[i]] += 1
    sm[A[i]] += A[i]
for i in range(2*10**5+4):
    cnt[i+1] += cnt[i]
    sm[i+1] += sm[i]

res = 0
for i in range(N):
    if A[i]==1:continue
    m = 0
    res += sm[-1]
    for j in range(A[i],2*10**5+5,A[i]):
        m += (j//A[i])*(cnt[min(j+A[i],2*10**5+4)-1]-cnt[j-1])
    res -= A[i]*m
print(res)

0