結果

問題 No.2835 Take and Flip
ユーザー Nichi10pNichi10p
提出日時 2024-08-09 21:25:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,444 KB
最終ジャッジ日時 2024-08-09 21:25:47
合計ジャッジ時間 3,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 114 ms
32,656 KB
testcase_04 AC 102 ms
33,444 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 150 ms
30,716 KB
testcase_07 AC 159 ms
31,276 KB
testcase_08 AC 138 ms
29,108 KB
testcase_09 AC 163 ms
32,628 KB
testcase_10 AC 161 ms
32,764 KB
testcase_11 AC 160 ms
32,632 KB
testcase_12 AC 161 ms
32,548 KB
testcase_13 AC 162 ms
32,632 KB
testcase_14 AC 81 ms
19,348 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 113 ms
24,764 KB
testcase_17 AC 37 ms
12,288 KB
testcase_18 AC 130 ms
27,668 KB
testcase_19 AC 155 ms
31,336 KB
testcase_20 AC 72 ms
18,296 KB
testcase_21 AC 148 ms
30,936 KB
testcase_22 AC 114 ms
25,576 KB
testcase_23 AC 65 ms
17,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
A.sort()
ans = sum(A[:(N+1)//2]) + sum(A[(N+1)//2:])
print(ans)
0