結果

問題 No.628 Tagの勢い
ユーザー kotatsugamekotatsugame
提出日時 2018-04-12 03:05:59
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 139,444 KB
実行使用メモリ 140,808 KB
最終ジャッジ日時 2024-10-07 22:43:07
合計ジャッジ時間 10,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
136,080 KB
testcase_01 AC 416 ms
136,080 KB
testcase_02 AC 405 ms
136,556 KB
testcase_03 AC 441 ms
136,076 KB
testcase_04 AC 420 ms
136,076 KB
testcase_05 AC 426 ms
136,336 KB
testcase_06 AC 408 ms
135,824 KB
testcase_07 AC 400 ms
136,080 KB
testcase_08 AC 424 ms
136,208 KB
testcase_09 AC 411 ms
135,824 KB
testcase_10 AC 426 ms
136,828 KB
testcase_11 AC 406 ms
136,332 KB
testcase_12 AC 461 ms
140,808 KB
testcase_13 AC 460 ms
140,428 KB
testcase_14 AC 458 ms
140,800 KB
testcase_15 AC 496 ms
140,440 KB
testcase_16 AC 467 ms
139,796 KB
testcase_17 AC 410 ms
136,464 KB
testcase_18 AC 417 ms
135,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my%h;
for (^get) ->$a {
	get;
	my ($m,$s)=get.words;
	%h{$_}-=$s for get.words;
}
%h.antipairs.sort[^10].map({
	put ($_.value,-$_.key) if $_
})
0