結果

問題 No.1972 Modulo Set
ユーザー ntudantuda
提出日時 2022-10-13 22:38:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 379 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-06-26 12:11:29
合計ジャッジ時間 5,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 54 ms
64,512 KB
testcase_04 AC 57 ms
68,096 KB
testcase_05 AC 57 ms
68,608 KB
testcase_06 AC 65 ms
74,496 KB
testcase_07 AC 74 ms
83,072 KB
testcase_08 AC 58 ms
69,504 KB
testcase_09 AC 51 ms
61,312 KB
testcase_10 AC 56 ms
67,840 KB
testcase_11 AC 70 ms
81,152 KB
testcase_12 AC 53 ms
63,488 KB
testcase_13 AC 50 ms
61,696 KB
testcase_14 AC 49 ms
61,952 KB
testcase_15 AC 71 ms
80,896 KB
testcase_16 AC 70 ms
80,640 KB
testcase_17 AC 58 ms
67,584 KB
testcase_18 AC 45 ms
57,600 KB
testcase_19 AC 67 ms
75,520 KB
testcase_20 AC 72 ms
80,512 KB
testcase_21 AC 60 ms
69,632 KB
testcase_22 AC 65 ms
73,728 KB
testcase_23 AC 82 ms
87,808 KB
testcase_24 AC 65 ms
73,984 KB
testcase_25 AC 71 ms
79,232 KB
testcase_26 AC 77 ms
86,528 KB
testcase_27 AC 87 ms
90,496 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 88 ms
94,208 KB
testcase_34 AC 90 ms
93,952 KB
testcase_35 AC 87 ms
94,208 KB
testcase_36 AC 87 ms
94,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
X = [0] * M
for a in A:
    X[a % M] += 1
ans = 0
for i in range(M // 2 + 1):
    if i == 0:
        ans += min(1, X[0])
    elif i == M//2:
        if M % 2 == 0:
            ans += min(1, X[M // 2])
        else:
            ans += max(X[i], X[M - i])
    else:
        ans += max(X[i], X[M - i])
print(ans)
0