結果

問題 No.507 ゲーム大会(チーム決め)
ユーザー tailstails
提出日時 2017-04-21 22:42:52
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 207 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 6,016 KB
実行使用メモリ 29,492 KB
最終ジャッジ日時 2024-07-20 05:32:32
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,888 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 AC 8 ms
5,888 KB
testcase_03 WA -
testcase_04 AC 8 ms
6,016 KB
testcase_05 AC 8 ms
5,888 KB
testcase_06 AC 8 ms
6,016 KB
testcase_07 AC 178 ms
29,492 KB
testcase_08 WA -
testcase_09 AC 78 ms
29,440 KB
testcase_10 AC 85 ms
29,440 KB
testcase_11 AC 91 ms
29,312 KB
testcase_12 AC 78 ms
29,312 KB
testcase_13 AC 195 ms
29,364 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$m)=glob<>;
$a0=<>;
@a=sort{$b-$a}<>;
if($n*2==$m){
	print $a[-1];
	exit;
}

$b=3e9;
for$i(0..$m-1){
	$x=$a[$i]+$a[$m*2-1-$i];
	$b=$x if $b>$x;
}
$o=-1;
for(@a){
	if($_+$a0>=$b){
		$o=$_;
	}
}
print $o;
0