結果

問題 No.5001 排他的論理和でランニング
ユーザー trineutrontrineutron
提出日時 2021-01-02 07:21:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 92 ms / 1,500 ms
コード長 105 bytes
コンパイル時間 67 ms
実行使用メモリ 19,024 KB
スコア 26,734,226
最終ジャッジ日時 2021-01-02 07:21:37
合計ジャッジ時間 6,689 ms
ジャッジサーバーID
(参考情報)
judge7 / judge9
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
18,856 KB
testcase_01 AC 22 ms
9,432 KB
testcase_02 AC 27 ms
10,444 KB
testcase_03 AC 47 ms
13,176 KB
testcase_04 AC 89 ms
18,868 KB
testcase_05 AC 38 ms
11,228 KB
testcase_06 AC 50 ms
14,892 KB
testcase_07 AC 58 ms
15,508 KB
testcase_08 AC 86 ms
17,196 KB
testcase_09 AC 16 ms
7,980 KB
testcase_10 AC 34 ms
10,996 KB
testcase_11 AC 44 ms
12,212 KB
testcase_12 AC 33 ms
11,216 KB
testcase_13 AC 92 ms
17,200 KB
testcase_14 AC 57 ms
14,208 KB
testcase_15 AC 37 ms
11,240 KB
testcase_16 AC 24 ms
9,540 KB
testcase_17 AC 30 ms
9,852 KB
testcase_18 AC 52 ms
13,560 KB
testcase_19 AC 39 ms
12,164 KB
testcase_20 AC 31 ms
10,704 KB
testcase_21 AC 32 ms
10,356 KB
testcase_22 AC 20 ms
9,172 KB
testcase_23 AC 18 ms
8,780 KB
testcase_24 AC 34 ms
12,280 KB
testcase_25 AC 61 ms
17,216 KB
testcase_26 AC 54 ms
15,532 KB
testcase_27 AC 39 ms
13,056 KB
testcase_28 AC 59 ms
15,024 KB
testcase_29 AC 66 ms
16,992 KB
testcase_30 AC 22 ms
9,184 KB
testcase_31 AC 63 ms
14,316 KB
testcase_32 AC 34 ms
10,908 KB
testcase_33 AC 88 ms
17,508 KB
testcase_34 AC 89 ms
19,024 KB
testcase_35 AC 57 ms
14,724 KB
testcase_36 AC 76 ms
17,824 KB
testcase_37 AC 57 ms
15,948 KB
testcase_38 AC 31 ms
10,720 KB
testcase_39 AC 39 ms
11,260 KB
testcase_40 AC 43 ms
13,340 KB
testcase_41 AC 22 ms
9,352 KB
testcase_42 AC 42 ms
12,308 KB
testcase_43 AC 46 ms
12,668 KB
testcase_44 AC 68 ms
16,948 KB
testcase_45 AC 74 ms
17,392 KB
testcase_46 AC 66 ms
17,724 KB
testcase_47 AC 40 ms
12,092 KB
testcase_48 AC 35 ms
11,112 KB
testcase_49 AC 78 ms
15,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = sorted(list(map(int, input().split())), reverse=True)
print(*a[:m])
0