結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,400 KB
testcase_01 AC 35 ms
52,332 KB
testcase_02 AC 42 ms
60,080 KB
testcase_03 AC 64 ms
74,348 KB
testcase_04 AC 51 ms
67,780 KB
testcase_05 AC 42 ms
59,256 KB
testcase_06 AC 40 ms
59,784 KB
testcase_07 AC 234 ms
82,536 KB
testcase_08 AC 348 ms
88,056 KB
testcase_09 AC 637 ms
100,736 KB
testcase_10 AC 670 ms
103,872 KB
testcase_11 AC 197 ms
81,852 KB
testcase_12 AC 740 ms
107,464 KB
testcase_13 AC 677 ms
107,752 KB
testcase_14 AC 722 ms
107,440 KB
testcase_15 AC 760 ms
107,164 KB
testcase_16 AC 774 ms
107,788 KB
testcase_17 AC 100 ms
103,612 KB
testcase_18 AC 730 ms
106,240 KB
testcase_19 AC 133 ms
106,704 KB
testcase_20 AC 102 ms
103,808 KB
testcase_21 AC 158 ms
106,952 KB
testcase_22 AC 155 ms
106,944 KB
testcase_23 AC 153 ms
106,552 KB
testcase_24 AC 157 ms
107,100 KB
testcase_25 AC 158 ms
106,832 KB
testcase_26 AC 163 ms
107,188 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