結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
31,692 KB
testcase_01 AC 52 ms
8,516 KB
testcase_02 AC 77 ms
10,912 KB
testcase_03 AC 161 ms
17,396 KB
testcase_04 AC 356 ms
32,144 KB
testcase_05 AC 112 ms
13,452 KB
testcase_06 AC 226 ms
22,308 KB
testcase_07 AC 258 ms
25,040 KB
testcase_08 AC 288 ms
27,592 KB
testcase_09 AC 8 ms
6,148 KB
testcase_10 AC 87 ms
11,840 KB
testcase_11 AC 128 ms
15,204 KB
testcase_12 AC 99 ms
12,692 KB
testcase_13 AC 290 ms
27,812 KB
testcase_14 AC 185 ms
19,792 KB
testcase_15 AC 111 ms
13,496 KB
testcase_16 AC 48 ms
8,404 KB
testcase_17 AC 68 ms
10,116 KB
testcase_18 AC 170 ms
18,408 KB
testcase_19 AC 125 ms
15,648 KB
testcase_20 AC 84 ms
11,928 KB
testcase_21 AC 74 ms
11,096 KB
testcase_22 AC 34 ms
7,160 KB
testcase_23 AC 24 ms
6,284 KB
testcase_24 AC 123 ms
15,096 KB
testcase_25 AC 294 ms
29,228 KB
testcase_26 AC 239 ms
25,408 KB
testcase_27 AC 145 ms
17,368 KB
testcase_28 AC 223 ms
23,036 KB
testcase_29 AC 272 ms
27,444 KB
testcase_30 AC 39 ms
7,652 KB
testcase_31 AC 198 ms
20,956 KB
testcase_32 AC 81 ms
11,244 KB
testcase_33 AC 305 ms
30,300 KB
testcase_34 AC 334 ms
31,968 KB
testcase_35 AC 209 ms
22,144 KB
testcase_36 AC 311 ms
30,740 KB
testcase_37 AC 240 ms
25,192 KB
testcase_38 AC 83 ms
11,916 KB
testcase_39 AC 102 ms
13,584 KB
testcase_40 AC 147 ms
17,504 KB
testcase_41 AC 36 ms
7,632 KB
testcase_42 AC 119 ms
15,468 KB
testcase_43 AC 141 ms
17,256 KB
testcase_44 AC 270 ms
27,812 KB
testcase_45 AC 295 ms
29,556 KB
testcase_46 AC 301 ms
30,416 KB
testcase_47 AC 117 ms
15,000 KB
testcase_48 AC 86 ms
12,200 KB
testcase_49 AC 231 ms
24,852 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