結果

問題 No.5001 排他的論理和でランニング
ユーザー %20%20
提出日時 2018-03-16 23:10:35
言語 Perl
(5.38.2)
結果
AC  
実行時間 362 ms / 1,500 ms
コード長 57 bytes
コンパイル時間 22 ms
実行使用メモリ 32,032 KB
スコア 26,734,226
最終ジャッジ日時 2020-03-12 19:31:38
ジャッジサーバーID
(参考情報)
judge9 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
31,652 KB
testcase_01 AC 52 ms
8,596 KB
testcase_02 AC 81 ms
10,812 KB
testcase_03 AC 159 ms
17,404 KB
testcase_04 AC 362 ms
32,032 KB
testcase_05 AC 113 ms
13,544 KB
testcase_06 AC 227 ms
22,424 KB
testcase_07 AC 252 ms
25,240 KB
testcase_08 AC 280 ms
27,592 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 90 ms
11,716 KB
testcase_11 AC 126 ms
15,100 KB
testcase_12 AC 104 ms
12,704 KB
testcase_13 AC 290 ms
27,940 KB
testcase_14 AC 183 ms
20,012 KB
testcase_15 AC 111 ms
13,700 KB
testcase_16 AC 51 ms
8,512 KB
testcase_17 AC 70 ms
10,268 KB
testcase_18 AC 174 ms
18,636 KB
testcase_19 AC 126 ms
15,720 KB
testcase_20 AC 89 ms
11,932 KB
testcase_21 AC 78 ms
10,868 KB
testcase_22 AC 34 ms
7,148 KB
testcase_23 AC 25 ms
6,412 KB
testcase_24 AC 128 ms
15,084 KB
testcase_25 AC 301 ms
29,124 KB
testcase_26 AC 252 ms
25,332 KB
testcase_27 AC 153 ms
17,476 KB
testcase_28 AC 229 ms
23,044 KB
testcase_29 AC 273 ms
27,484 KB
testcase_30 AC 41 ms
7,604 KB
testcase_31 AC 199 ms
21,068 KB
testcase_32 AC 83 ms
11,324 KB
testcase_33 AC 316 ms
30,248 KB
testcase_34 AC 339 ms
31,960 KB
testcase_35 AC 212 ms
22,164 KB
testcase_36 AC 321 ms
30,684 KB
testcase_37 AC 230 ms
25,080 KB
testcase_38 AC 83 ms
11,812 KB
testcase_39 AC 104 ms
13,580 KB
testcase_40 AC 153 ms
17,644 KB
testcase_41 AC 36 ms
7,492 KB
testcase_42 AC 125 ms
15,376 KB
testcase_43 AC 147 ms
17,332 KB
testcase_44 AC 271 ms
27,828 KB
testcase_45 AC 301 ms
29,580 KB
testcase_46 AC 305 ms
30,420 KB
testcase_47 AC 119 ms
15,068 KB
testcase_48 AC 89 ms
11,996 KB
testcase_49 AC 239 ms
24,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::N" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($N,$M)=glob<>;
@A=sort{$b-$a}glob<>;
print"@A[0..$M-1]"
0