結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー ckawatakckawatak
提出日時 2019-01-12 17:35:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 133,640 KB
最終ジャッジ日時 2024-12-21 13:30:22
合計ジャッジ時間 26,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
56,960 KB
testcase_01 AC 34 ms
60,304 KB
testcase_02 AC 34 ms
133,640 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 33 ms
56,576 KB
testcase_06 WA -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 93 ms
87,900 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = list(map(int, input().split(' ')))

A = []
for i in range(N):
    A.append(int(input()))

K = A[0]    
A = sorted(A, reverse=True)
used = [False for _ in range(len(A))]
done = 0

for i in range(len(A)-2):
    for j in reversed(range(len(A))):
        if not used[j]:
            x = A[i] + A[j]
            y = A[i+1] + A[i+2]
            if y <= x:
                if (A[i] == K or A[j] == K) and done < M:
                    print(x - K)
                    exit(0)
                else:
                    done = done + 1
                    used[j] = True

print(-1)                    
0