結果

問題 No.1972 Modulo Set
ユーザー maguroflymagurofly
提出日時 2022-06-10 22:13:54
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-09-21 06:27:13
合計ジャッジ時間 7,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,416 KB
testcase_01 AC 92 ms
12,416 KB
testcase_02 AC 93 ms
12,416 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 97 ms
12,544 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 99 ms
12,800 KB
testcase_14 AC 98 ms
12,800 KB
testcase_15 WA -
testcase_16 AC 170 ms
21,504 KB
testcase_17 AC 118 ms
14,976 KB
testcase_18 AC 91 ms
12,288 KB
testcase_19 AC 154 ms
19,840 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 143 ms
18,816 KB
testcase_23 AC 199 ms
25,472 KB
testcase_24 AC 131 ms
17,280 KB
testcase_25 AC 152 ms
20,224 KB
testcase_26 WA -
testcase_27 AC 202 ms
25,600 KB
testcase_28 AC 132 ms
17,920 KB
testcase_29 AC 149 ms
20,096 KB
testcase_30 AC 182 ms
23,680 KB
testcase_31 AC 100 ms
12,672 KB
testcase_32 AC 169 ms
21,504 KB
testcase_33 AC 215 ms
27,776 KB
testcase_34 AC 218 ms
27,776 KB
testcase_35 AC 214 ms
27,776 KB
testcase_36 AC 212 ms
27,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "set"

N, M = gets.split.map(&:to_i)
A = gets.split.map { _1.to_i % M }

count = Hash.new(0)
A.each do |x|
    count[x] += 1
end

ans = 0
A.map { |x| [x, M - x].min }.uniq.each do |x|
    if x * 2 == M
        ans += 1
    else
        ans += [count[x], count[-x % M]].max
    end
end

puts ans
0