結果
問題 | No.1917 LCMST |
ユーザー | tamato |
提出日時 | 2022-04-29 21:42:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 725 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 255,528 KB |
最終ジャッジ日時 | 2024-06-29 03:04:03 |
合計ジャッジ時間 | 42,271 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 206 ms
100,224 KB |
testcase_01 | AC | 213 ms
100,224 KB |
testcase_02 | AC | 202 ms
100,480 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 209 ms
100,224 KB |
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 | 934 ms
254,184 KB |
testcase_30 | AC | 939 ms
254,188 KB |
testcase_31 | AC | 956 ms
254,564 KB |
testcase_32 | AC | 945 ms
253,028 KB |
testcase_33 | AC | 943 ms
254,696 KB |
testcase_34 | AC | 730 ms
244,380 KB |
testcase_35 | AC | 564 ms
244,264 KB |
testcase_36 | AC | 797 ms
244,360 KB |
testcase_37 | AC | 949 ms
253,276 KB |
testcase_38 | AC | 930 ms
252,904 KB |
testcase_39 | AC | 945 ms
252,648 KB |
testcase_40 | AC | 950 ms
251,512 KB |
testcase_41 | AC | 930 ms
252,904 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
mod = 998244353 NN = 10 ** 5 def main(): import sys input = sys.stdin.readline div = [[] for _ in range(NN + 1)] for d in range(1, NN + 1): for x in range(1, NN + 1): if d * x > NN: break div[d * x].append(d) N = int(input()) A = list(map(int, input().split())) A.sort() ans = 0 seen = [10 ** 17] * (NN + 1) a = A[0] for d in div[a]: seen[d] = min(seen[d], a // d) for a in A[1:]: mi = 10 ** 17 for d in div[a][::-1]: mi = min(mi, seen[d]) ans += a * mi for d in div[a]: seen[d] = min(seen[d], a // d) print(ans) if __name__ == '__main__': main()