結果

問題 No.1972 Modulo Set
ユーザー simansiman
提出日時 2022-06-11 09:31:34
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-09-21 18:00:13
合計ジャッジ時間 8,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
17,536 KB
testcase_01 AC 93 ms
12,160 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 93 ms
12,160 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 97 ms
12,288 KB
testcase_14 AC 96 ms
12,416 KB
testcase_15 WA -
testcase_16 AC 144 ms
20,352 KB
testcase_17 AC 105 ms
14,592 KB
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 130 ms
19,200 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 124 ms
18,432 KB
testcase_23 AC 217 ms
24,320 KB
testcase_24 AC 173 ms
15,872 KB
testcase_25 AC 198 ms
18,944 KB
testcase_26 WA -
testcase_27 AC 242 ms
24,704 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

counter = A.map { |a| a % M }.tally
counter.default = 0

ans = 0

0.upto(M / 2) do |i|
  j = M - i

  ans += [counter[i], counter[j]].max
end

puts ans
0