結果

問題 No.1279 Array Battle
ユーザー yuruhiyayuruhiya
提出日時 2021-01-31 17:23:19
言語 Raku
(rakudo v2024.02)
結果
TLE  
実行時間 -
コード長 128 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 131,080 KB
実行使用メモリ 150,384 KB
最終ジャッジ日時 2024-06-29 02:00:51
合計ジャッジ時間 11,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 419 ms
143,652 KB
testcase_01 AC 419 ms
138,660 KB
testcase_02 AC 514 ms
141,560 KB
testcase_03 AC 411 ms
138,272 KB
testcase_04 AC 412 ms
135,484 KB
testcase_05 AC 415 ms
138,276 KB
testcase_06 AC 422 ms
136,000 KB
testcase_07 AC 410 ms
138,404 KB
testcase_08 AC 416 ms
138,276 KB
testcase_09 AC 436 ms
139,300 KB
testcase_10 AC 498 ms
140,388 KB
testcase_11 AC 595 ms
141,900 KB
testcase_12 AC 1,169 ms
142,288 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my @n = get;
my @a = get.words;
my @b = get.words;
say @b.permutations.map({
	sum map({[R-] $_},($_ Z@a))Xmax 0
}).Bag.max.value
0