結果

問題 No.1972 Modulo Set
ユーザー roarisroaris
提出日時 2022-06-10 22:27:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 114,320 KB
最終ジャッジ日時 2024-10-05 01:34:42
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,732 KB
testcase_01 AC 44 ms
54,672 KB
testcase_02 AC 39 ms
54,724 KB
testcase_03 AC 54 ms
70,932 KB
testcase_04 AC 55 ms
73,036 KB
testcase_05 AC 62 ms
75,716 KB
testcase_06 AC 64 ms
80,176 KB
testcase_07 AC 79 ms
89,060 KB
testcase_08 AC 52 ms
72,756 KB
testcase_09 AC 51 ms
66,840 KB
testcase_10 AC 56 ms
73,456 KB
testcase_11 AC 74 ms
87,692 KB
testcase_12 AC 53 ms
70,560 KB
testcase_13 AC 48 ms
66,856 KB
testcase_14 AC 52 ms
68,296 KB
testcase_15 AC 83 ms
91,360 KB
testcase_16 AC 87 ms
93,364 KB
testcase_17 AC 61 ms
77,312 KB
testcase_18 AC 37 ms
53,860 KB
testcase_19 AC 79 ms
89,652 KB
testcase_20 AC 89 ms
95,052 KB
testcase_21 AC 62 ms
79,564 KB
testcase_22 AC 76 ms
91,120 KB
testcase_23 AC 118 ms
103,568 KB
testcase_24 AC 71 ms
88,172 KB
testcase_25 AC 86 ms
101,208 KB
testcase_26 AC 93 ms
95,584 KB
testcase_27 AC 116 ms
103,340 KB
testcase_28 AC 70 ms
88,548 KB
testcase_29 AC 83 ms
101,336 KB
testcase_30 AC 102 ms
114,320 KB
testcase_31 AC 47 ms
66,816 KB
testcase_32 AC 91 ms
110,200 KB
testcase_33 AC 129 ms
108,880 KB
testcase_34 AC 128 ms
108,804 KB
testcase_35 AC 128 ms
108,820 KB
testcase_36 AC 127 ms
108,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
A = list(map(int, input().split()))
cnt = defaultdict(int)

for Ai in A:
    cnt[Ai%M] += 1

ans = 0
s = set()
l = list(cnt.keys())

for k in l:
    if k in s:
        continue
    
    if k==0 or (M%2==0 and k==M//2):
        ans += min(1, cnt[k])
    else:
        ans += max(cnt[k], cnt[M-k])
        s.add(M-k)

print(ans)
0