結果

問題 No.1233 割り切れない気持ち
ユーザー marroncastlemarroncastle
提出日時 2020-09-18 23:00:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 160,500 KB
最終ジャッジ日時 2024-06-22 17:10:46
合計ジャッジ時間 13,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
160,500 KB
testcase_01 AC 34 ms
53,284 KB
testcase_02 AC 40 ms
59,024 KB
testcase_03 AC 60 ms
74,108 KB
testcase_04 AC 50 ms
68,292 KB
testcase_05 AC 40 ms
58,680 KB
testcase_06 AC 41 ms
58,732 KB
testcase_07 AC 211 ms
82,372 KB
testcase_08 AC 324 ms
88,108 KB
testcase_09 AC 586 ms
100,712 KB
testcase_10 AC 611 ms
103,684 KB
testcase_11 AC 175 ms
81,588 KB
testcase_12 AC 720 ms
107,296 KB
testcase_13 AC 670 ms
108,020 KB
testcase_14 AC 718 ms
107,344 KB
testcase_15 AC 879 ms
107,120 KB
testcase_16 AC 767 ms
107,436 KB
testcase_17 AC 96 ms
103,776 KB
testcase_18 AC 713 ms
106,364 KB
testcase_19 AC 132 ms
106,636 KB
testcase_20 AC 92 ms
103,824 KB
testcase_21 AC 152 ms
107,008 KB
testcase_22 AC 150 ms
106,544 KB
testcase_23 AC 153 ms
106,572 KB
testcase_24 AC 153 ms
106,936 KB
testcase_25 AC 155 ms
106,876 KB
testcase_26 AC 150 ms
106,920 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()))
ans = sum(A)*N
A.sort()
from bisect import *
for a in A:
  for p in range(a,A[-1]+1,a):
    ind = bisect_left(A,p)
    ans -= a*(N-ind)
print(ans)
0