結果

問題 No.1233 割り切れない気持ち
ユーザー WSKRWSKR
提出日時 2020-09-21 22:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 873 ms / 3,153 ms
コード長 820 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 111,120 KB
最終ジャッジ日時 2024-06-24 21:26:10
合計ジャッジ時間 14,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
78,700 KB
testcase_01 AC 62 ms
78,608 KB
testcase_02 AC 122 ms
78,496 KB
testcase_03 AC 305 ms
79,176 KB
testcase_04 AC 166 ms
79,196 KB
testcase_05 AC 130 ms
78,428 KB
testcase_06 AC 144 ms
78,624 KB
testcase_07 AC 560 ms
85,280 KB
testcase_08 AC 565 ms
91,148 KB
testcase_09 AC 564 ms
103,884 KB
testcase_10 AC 620 ms
106,940 KB
testcase_11 AC 313 ms
84,760 KB
testcase_12 AC 650 ms
110,900 KB
testcase_13 AC 612 ms
111,120 KB
testcase_14 AC 615 ms
110,568 KB
testcase_15 AC 659 ms
110,792 KB
testcase_16 AC 662 ms
111,020 KB
testcase_17 AC 100 ms
106,552 KB
testcase_18 AC 873 ms
109,124 KB
testcase_19 AC 92 ms
106,720 KB
testcase_20 AC 125 ms
106,668 KB
testcase_21 AC 135 ms
110,096 KB
testcase_22 AC 134 ms
109,648 KB
testcase_23 AC 132 ms
109,416 KB
testcase_24 AC 131 ms
110,104 KB
testcase_25 AC 132 ms
110,376 KB
testcase_26 AC 130 ms
110,596 KB
testcase_27 AC 136 ms
109,952 KB
testcase_28 AC 134 ms
110,000 KB
testcase_29 AC 134 ms
109,756 KB
testcase_30 AC 132 ms
109,744 KB
testcase_31 AC 131 ms
110,292 KB
testcase_32 AC 133 ms
109,984 KB
testcase_33 AC 132 ms
109,660 KB
testcase_34 AC 132 ms
109,732 KB
testcase_35 AC 131 ms
109,804 KB
testcase_36 AC 132 ms
110,244 KB
testcase_37 AC 63 ms
78,588 KB
testcase_38 AC 126 ms
106,656 KB
testcase_39 AC 516 ms
108,464 KB
testcase_40 AC 521 ms
108,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right


def cnt_quotient(Number, quioitent, List):
    return len(List) - bisect_right(List, Number*quioitent-1)


def main():
    N = int(input())
    a = list(map(int, input().split()))
    a.sort()
    res = 0
    s = sum(a)
    visited = [False for i in range(2*10**5+1)]
    val = [0 for i in range(2*10**5+1)]
    for v in a:
        if visited[v] == True:
            res += val[v]
            continue
        else:
            visited[v] = True
            tmp_sum = s
            for i in range(1, 2*10**5+1):
                if v*i > 2*10**5:
                    break
                else:
                    tmp_sum -= v*cnt_quotient(v, i, a)
            res += tmp_sum
            val[v] = tmp_sum
    print(res)
    return


if __name__ == "__main__":
    main()

0