Submission #1434778
Source Code Expand
# -*- coding: utf-8 -*-
import re
n, k = map(int, re.split('\s', raw_input()))
l = map(int, re.split('\s', raw_input()))
ans = 0
l.sort()
l.reverse()
for i in range(0,k):
ans += l[i]
print ans
Submission Info
| Submission Time | |
|---|---|
| Task | B - Snake Toy |
| User | kato_coffee |
| Language | Python (2.7.6) |
| Score | 200 |
| Code Size | 219 Byte |
| Status | AC |
| Exec Time | 11 ms |
| Memory | 2568 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 200 / 200 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 00_example_01.txt, 00_example_02.txt |
| All | 00_example_01.txt, 00_example_02.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00_example_01.txt | AC | 11 ms | 2568 KiB |
| 00_example_02.txt | AC | 11 ms | 2568 KiB |
| 01.txt | AC | 11 ms | 2568 KiB |
| 02.txt | AC | 11 ms | 2568 KiB |
| 03.txt | AC | 11 ms | 2568 KiB |
| 04.txt | AC | 11 ms | 2568 KiB |
| 05.txt | AC | 11 ms | 2568 KiB |
| 06.txt | AC | 11 ms | 2568 KiB |
| 07.txt | AC | 11 ms | 2568 KiB |
| 08.txt | AC | 11 ms | 2568 KiB |