結果

問題 No.1233 割り切れない気持ち
ユーザー mlihua09mlihua09
提出日時 2020-09-18 21:54:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 284 bytes
コンパイル時間 813 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 108,148 KB
最終ジャッジ日時 2024-06-22 16:50:44
合計ジャッジ時間 14,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,984 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 44 ms
58,624 KB
testcase_03 AC 66 ms
74,092 KB
testcase_04 AC 57 ms
67,712 KB
testcase_05 AC 44 ms
59,136 KB
testcase_06 AC 43 ms
58,752 KB
testcase_07 AC 235 ms
82,296 KB
testcase_08 AC 348 ms
88,192 KB
testcase_09 AC 674 ms
100,564 KB
testcase_10 AC 723 ms
103,872 KB
testcase_11 AC 218 ms
81,536 KB
testcase_12 AC 851 ms
107,776 KB
testcase_13 AC 756 ms
108,148 KB
testcase_14 AC 785 ms
107,136 KB
testcase_15 AC 767 ms
107,264 KB
testcase_16 AC 822 ms
107,648 KB
testcase_17 AC 134 ms
104,064 KB
testcase_18 AC 755 ms
106,112 KB
testcase_19 AC 156 ms
106,404 KB
testcase_20 AC 123 ms
103,720 KB
testcase_21 AC 186 ms
106,880 KB
testcase_22 AC 184 ms
107,008 KB
testcase_23 AC 193 ms
106,820 KB
testcase_24 AC 184 ms
106,936 KB
testcase_25 AC 189 ms
107,028 KB
testcase_26 AC 188 ms
107,108 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

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

A.sort()

ans = sum(A) * N

from bisect import bisect_left
X = A[-1]
for a in A:
    x = (X // a) * a
    i = bisect_left(A, x)
    while x > 0:
        ans -= (N - i) * a
        x -= a
        i = bisect_left(A, x)
print(ans)
0