結果

問題 No.1972 Modulo Set
ユーザー simansiman
提出日時 2022-06-11 09:49:26
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 345 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-09-21 18:22:30
合計ジャッジ時間 8,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
17,536 KB
testcase_01 AC 94 ms
12,416 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 102 ms
13,440 KB
testcase_04 AC 109 ms
14,336 KB
testcase_05 AC 110 ms
14,720 KB
testcase_06 AC 119 ms
16,384 KB
testcase_07 AC 139 ms
19,072 KB
testcase_08 AC 114 ms
15,232 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 107 ms
14,464 KB
testcase_11 AC 139 ms
18,944 KB
testcase_12 AC 98 ms
13,056 KB
testcase_13 AC 99 ms
12,416 KB
testcase_14 AC 99 ms
12,416 KB
testcase_15 AC 142 ms
19,328 KB
testcase_16 AC 149 ms
20,480 KB
testcase_17 AC 108 ms
14,464 KB
testcase_18 AC 89 ms
12,288 KB
testcase_19 AC 135 ms
19,456 KB
testcase_20 AC 148 ms
20,352 KB
testcase_21 AC 113 ms
15,232 KB
testcase_22 AC 131 ms
18,560 KB
testcase_23 AC 244 ms
24,576 KB
testcase_24 AC 201 ms
16,000 KB
testcase_25 AC 232 ms
19,072 KB
testcase_26 AC 156 ms
22,144 KB
testcase_27 AC 289 ms
24,576 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 = [1, counter[0]].min

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

  cnt_1 = ((i + i) % M == 0) ? [1, counter[i]].min : counter[i]
  cnt_2 = ((j + j) % M == 0) ? [1, counter[j]].min : counter[j]
  ans += [cnt_1, cnt_2].max
end

puts ans
0