結果

問題 No.1390 Get together
ユーザー yuruhiyayuruhiya
提出日時 2021-02-12 22:31:20
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-07-19 23:10:11
合計ジャッジ時間 14,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
22,528 KB
testcase_01 AC 135 ms
22,528 KB
testcase_02 AC 133 ms
22,400 KB
testcase_03 AC 146 ms
24,704 KB
testcase_04 AC 145 ms
22,912 KB
testcase_05 WA -
testcase_06 AC 140 ms
23,040 KB
testcase_07 WA -
testcase_08 AC 139 ms
23,168 KB
testcase_09 AC 143 ms
23,552 KB
testcase_10 AC 131 ms
22,400 KB
testcase_11 AC 132 ms
22,400 KB
testcase_12 AC 137 ms
22,400 KB
testcase_13 WA -
testcase_14 AC 139 ms
22,528 KB
testcase_15 AC 133 ms
22,400 KB
testcase_16 WA -
testcase_17 AC 645 ms
40,832 KB
testcase_18 AC 580 ms
54,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 634 ms
40,704 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 655 ms
40,832 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n, m = gets.split.map(&:to_i)
b, c = (1..n).map { gets.split.map(&:to_i) }.transpose
d = (0..200_000).map { [] }
(0...n).each { |i| d[c[i]] << b[i] }
puts d.reject(&:empty?).sum { |a| a.size - a.tally.map { _1[1] }.max }
0