結果
問題 | No.198 キャンディー・ボックス2 |
ユーザー | Mao-beta |
提出日時 | 2024-04-04 23:36:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 764 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 57,488 KB |
最終ジャッジ日時 | 2024-10-01 00:39:52 |
合計ジャッジ時間 | 2,844 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
57,144 KB |
testcase_01 | AC | 43 ms
56,108 KB |
testcase_02 | AC | 42 ms
56,880 KB |
testcase_03 | AC | 44 ms
56,656 KB |
testcase_04 | AC | 44 ms
56,316 KB |
testcase_05 | AC | 44 ms
57,252 KB |
testcase_06 | AC | 44 ms
57,208 KB |
testcase_07 | AC | 45 ms
55,568 KB |
testcase_08 | AC | 44 ms
56,068 KB |
testcase_09 | AC | 44 ms
56,172 KB |
testcase_10 | AC | 42 ms
56,052 KB |
testcase_11 | AC | 44 ms
56,776 KB |
testcase_12 | AC | 43 ms
55,776 KB |
testcase_13 | AC | 45 ms
56,696 KB |
testcase_14 | AC | 45 ms
55,992 KB |
testcase_15 | AC | 46 ms
57,204 KB |
testcase_16 | AC | 46 ms
56,168 KB |
testcase_17 | AC | 46 ms
56,160 KB |
testcase_18 | AC | 47 ms
56,556 KB |
testcase_19 | WA | - |
testcase_20 | AC | 45 ms
55,980 KB |
testcase_21 | WA | - |
testcase_22 | AC | 45 ms
56,340 KB |
testcase_23 | WA | - |
testcase_24 | AC | 44 ms
56,132 KB |
testcase_25 | WA | - |
testcase_26 | AC | 45 ms
56,092 KB |
testcase_27 | AC | 44 ms
57,488 KB |
testcase_28 | WA | - |
testcase_29 | AC | 46 ms
56,620 KB |
ソースコード
import sys import math import bisect from heapq import heapify, heappop, heappush from collections import deque, defaultdict, Counter from functools import lru_cache from itertools import accumulate, combinations, permutations, product sys.setrecursionlimit(1000000) MOD = 10 ** 9 + 7 MOD99 = 998244353 input = lambda: sys.stdin.readline().strip() NI = lambda: int(input()) NMI = lambda: map(int, input().split()) NLI = lambda: list(NMI()) SI = lambda: input() SMI = lambda: input().split() SLI = lambda: list(SMI()) EI = lambda m: [NLI() for _ in range(m)] def main(): B = NI() N = NI() C = sorted([NI() for _ in range(N)]) m = C[N//2] ans = 0 for c in C: ans += abs(c-m) print(ans) if __name__ == "__main__": main()