結果

問題 No.2799 Cut and Eat
ユーザー shobonvipshobonvip
提出日時 2024-06-27 00:12:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-06-27 00:12:14
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,808 KB
testcase_01 AC 38 ms
52,460 KB
testcase_02 AC 37 ms
53,512 KB
testcase_03 AC 36 ms
52,548 KB
testcase_04 AC 35 ms
53,140 KB
testcase_05 AC 36 ms
53,264 KB
testcase_06 WA -
testcase_07 AC 36 ms
52,872 KB
testcase_08 AC 35 ms
53,484 KB
testcase_09 AC 36 ms
52,536 KB
testcase_10 AC 36 ms
53,076 KB
testcase_11 AC 38 ms
53,444 KB
testcase_12 AC 37 ms
53,820 KB
testcase_13 AC 35 ms
53,228 KB
testcase_14 AC 36 ms
52,768 KB
testcase_15 AC 35 ms
52,696 KB
testcase_16 AC 37 ms
52,544 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
53,016 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 37 ms
52,336 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 36 ms
53,500 KB
testcase_26 AC 35 ms
53,480 KB
testcase_27 AC 37 ms
52,024 KB
testcase_28 AC 38 ms
53,348 KB
testcase_29 AC 36 ms
53,296 KB
testcase_30 AC 37 ms
52,176 KB
testcase_31 AC 38 ms
52,416 KB
testcase_32 AC 37 ms
53,152 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int,input().split())
def v(x):
	if x <= k:
		return x
	return -(n%2)

a = list(map(int,input().split()))
b = [v(x) for x in a]
b.sort(lambda x: -x)

ans = 0
mode = 0
for i in b:
	if mode:
		ans -= i
	else:
		ans += i
	mode ^= 1

print((sum(a) + ans) // 2)
0