結果

問題 No.1233 割り切れない気持ち
ユーザー marroncastlemarroncastle
提出日時 2020-09-18 23:14:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 3,153 ms
コード長 310 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 109,680 KB
最終ジャッジ日時 2024-06-22 19:24:31
合計ジャッジ時間 4,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,672 KB
testcase_01 AC 32 ms
52,612 KB
testcase_02 AC 33 ms
52,660 KB
testcase_03 AC 42 ms
60,904 KB
testcase_04 AC 42 ms
62,084 KB
testcase_05 AC 35 ms
53,392 KB
testcase_06 AC 35 ms
53,000 KB
testcase_07 AC 63 ms
79,436 KB
testcase_08 AC 69 ms
85,800 KB
testcase_09 AC 92 ms
102,024 KB
testcase_10 AC 99 ms
105,172 KB
testcase_11 AC 55 ms
74,756 KB
testcase_12 AC 107 ms
109,680 KB
testcase_13 AC 108 ms
109,592 KB
testcase_14 AC 105 ms
109,448 KB
testcase_15 AC 105 ms
109,556 KB
testcase_16 AC 109 ms
109,352 KB
testcase_17 AC 67 ms
97,440 KB
testcase_18 AC 105 ms
109,464 KB
testcase_19 AC 83 ms
107,660 KB
testcase_20 AC 68 ms
97,312 KB
testcase_21 AC 71 ms
100,848 KB
testcase_22 AC 72 ms
100,252 KB
testcase_23 AC 71 ms
100,368 KB
testcase_24 AC 72 ms
100,284 KB
testcase_25 AC 77 ms
100,864 KB
testcase_26 AC 73 ms
100,552 KB
testcase_27 AC 85 ms
106,924 KB
testcase_28 AC 88 ms
106,624 KB
testcase_29 AC 85 ms
106,364 KB
testcase_30 AC 86 ms
106,648 KB
testcase_31 AC 85 ms
106,796 KB
testcase_32 AC 86 ms
106,864 KB
testcase_33 AC 85 ms
106,336 KB
testcase_34 AC 83 ms
106,780 KB
testcase_35 AC 85 ms
106,312 KB
testcase_36 AC 91 ms
107,124 KB
testcase_37 AC 36 ms
52,560 KB
testcase_38 AC 80 ms
103,552 KB
testcase_39 AC 104 ms
107,836 KB
testcase_40 AC 100 ms
107,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
ans = sum(A)*N
M = max(A)
lis = [0]*(M+1)
cum = [0]*(M+1)
for a in A:
  lis[a] += 1
for i in range(1,M+1):
  cum[i] = cum[i-1]+lis[i]

for i in range(1,M+1):
  if lis[i]==0:
    continue
  for p in range(i,M+1,i):
    ans -= lis[i]*i*(N-cum[p-1])
print(ans)
0