結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
31,636 KB
testcase_01 AC 50 ms
8,592 KB
testcase_02 AC 76 ms
10,832 KB
testcase_03 AC 155 ms
17,488 KB
testcase_04 AC 344 ms
32,044 KB
testcase_05 AC 111 ms
13,460 KB
testcase_06 AC 212 ms
22,364 KB
testcase_07 AC 243 ms
25,072 KB
testcase_08 AC 275 ms
27,700 KB
testcase_09 AC 8 ms
5,380 KB
testcase_10 AC 83 ms
11,608 KB
testcase_11 AC 122 ms
15,040 KB
testcase_12 AC 96 ms
12,908 KB
testcase_13 AC 291 ms
28,012 KB
testcase_14 AC 179 ms
19,820 KB
testcase_15 AC 106 ms
13,468 KB
testcase_16 AC 47 ms
8,500 KB
testcase_17 AC 65 ms
10,128 KB
testcase_18 AC 163 ms
18,452 KB
testcase_19 AC 123 ms
15,772 KB
testcase_20 AC 84 ms
11,784 KB
testcase_21 AC 75 ms
10,896 KB
testcase_22 AC 32 ms
7,152 KB
testcase_23 AC 23 ms
6,296 KB
testcase_24 AC 120 ms
15,080 KB
testcase_25 AC 281 ms
29,144 KB
testcase_26 AC 244 ms
25,296 KB
testcase_27 AC 144 ms
17,364 KB
testcase_28 AC 215 ms
23,096 KB
testcase_29 AC 266 ms
27,404 KB
testcase_30 AC 39 ms
7,836 KB
testcase_31 AC 195 ms
21,016 KB
testcase_32 AC 82 ms
11,272 KB
testcase_33 AC 303 ms
30,116 KB
testcase_34 AC 324 ms
31,976 KB
testcase_35 AC 204 ms
22,144 KB
testcase_36 AC 296 ms
30,768 KB
testcase_37 AC 227 ms
25,108 KB
testcase_38 AC 81 ms
11,712 KB
testcase_39 AC 99 ms
13,448 KB
testcase_40 AC 145 ms
17,536 KB
testcase_41 AC 35 ms
7,624 KB
testcase_42 AC 118 ms
15,544 KB
testcase_43 AC 141 ms
17,252 KB
testcase_44 AC 265 ms
27,836 KB
testcase_45 AC 290 ms
29,500 KB
testcase_46 AC 304 ms
30,328 KB
testcase_47 AC 116 ms
14,964 KB
testcase_48 AC 87 ms
11,996 KB
testcase_49 AC 226 ms
25,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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