結果

問題 No.1972 Modulo Set
ユーザー pitPpitP
提出日時 2022-06-10 21:44:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 324 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-09-21 06:08:32
合計ジャッジ時間 4,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,992 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 41 ms
53,120 KB
testcase_03 AC 60 ms
69,632 KB
testcase_04 AC 61 ms
72,192 KB
testcase_05 WA -
testcase_06 AC 70 ms
79,768 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 56 ms
65,152 KB
testcase_10 WA -
testcase_11 AC 89 ms
89,568 KB
testcase_12 AC 59 ms
67,968 KB
testcase_13 AC 56 ms
65,408 KB
testcase_14 AC 55 ms
65,920 KB
testcase_15 AC 92 ms
92,032 KB
testcase_16 AC 98 ms
94,464 KB
testcase_17 AC 67 ms
74,624 KB
testcase_18 AC 41 ms
53,864 KB
testcase_19 AC 89 ms
90,488 KB
testcase_20 AC 102 ms
96,256 KB
testcase_21 AC 70 ms
77,440 KB
testcase_22 AC 85 ms
87,296 KB
testcase_23 AC 118 ms
104,832 KB
testcase_24 AC 74 ms
82,816 KB
testcase_25 AC 86 ms
93,568 KB
testcase_26 WA -
testcase_27 AC 120 ms
104,704 KB
testcase_28 AC 72 ms
83,072 KB
testcase_29 AC 83 ms
91,904 KB
testcase_30 AC 97 ms
103,552 KB
testcase_31 AC 53 ms
64,256 KB
testcase_32 AC 97 ms
99,072 KB
testcase_33 AC 126 ms
106,624 KB
testcase_34 AC 127 ms
106,624 KB
testcase_35 AC 126 ms
106,240 KB
testcase_36 AC 130 ms
107,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n,m = map(int,input().split())
a = list(map(int,input().split()))
a = [num%m for num in a]

d = defaultdict(int)

for num in a:
    d[num] += 1

ans = 0
for num in a:
    if num != 0:
        ans += max(d[num],d[m-num])
    d[num] = 0
    d[m-num] = 0

if 0 in a:
    ans += 1

print(ans)
0