結果
問題 | No.1917 LCMST |
ユーザー | PNJ |
提出日時 | 2024-08-29 19:34:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 458 bytes |
コンパイル時間 | 590 ms |
コンパイル使用メモリ | 82,512 KB |
実行使用メモリ | 225,964 KB |
最終ジャッジ日時 | 2024-08-29 19:34:37 |
合計ジャッジ時間 | 17,545 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
61,376 KB |
testcase_01 | AC | 36 ms
53,976 KB |
testcase_02 | AC | 42 ms
60,216 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 | 226 ms
223,588 KB |
testcase_30 | AC | 222 ms
223,124 KB |
testcase_31 | AC | 221 ms
224,424 KB |
testcase_32 | AC | 257 ms
224,512 KB |
testcase_33 | AC | 225 ms
224,568 KB |
testcase_34 | AC | 230 ms
224,568 KB |
testcase_35 | AC | 230 ms
225,260 KB |
testcase_36 | AC | 232 ms
225,740 KB |
testcase_37 | AC | 267 ms
224,480 KB |
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 += a * (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)