結果
問題 | No.1917 LCMST |
ユーザー | PNJ |
提出日時 | 2024-08-29 19:35:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 458 bytes |
コンパイル時間 | 3,673 ms |
コンパイル使用メモリ | 82,196 KB |
実行使用メモリ | 226,044 KB |
最終ジャッジ日時 | 2024-08-29 19:36:02 |
合計ジャッジ時間 | 15,611 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
61,384 KB |
testcase_01 | AC | 41 ms
53,340 KB |
testcase_02 | AC | 42 ms
59,676 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 250 ms
222,936 KB |
testcase_30 | AC | 216 ms
224,180 KB |
testcase_31 | AC | 218 ms
223,392 KB |
testcase_32 | AC | 220 ms
223,112 KB |
testcase_33 | AC | 225 ms
223,900 KB |
testcase_34 | AC | 244 ms
224,856 KB |
testcase_35 | AC | 226 ms
225,440 KB |
testcase_36 | AC | 233 ms
224,988 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
N = int(input()) A = list(map(int,input().split())) M = 100000 B = [0] * (M + 1) m = min(A) if m == 1: print(sum(A) - 1) exit() for a in A: B[a] += 1 ans = 0 for a in range(2,M): if B[a] == 0: continue ans += m * (B[a] - 1) B[a] = 1 res = 0 for i in range(2,M + 1): if a * i > M: break res += B[a * i] * a * i B[a * i] = 0 ans += res for a in range(m + 1,M + 1): if B[a] == 0: continue ans += a * m print(ans)