結果

問題 No.1972 Modulo Set
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2022-06-11 17:21:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 107,832 KB
最終ジャッジ日時 2024-10-05 01:44:47
合計ジャッジ時間 3,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,200 KB
testcase_01 AC 34 ms
53,708 KB
testcase_02 AC 36 ms
52,832 KB
testcase_03 AC 59 ms
70,392 KB
testcase_04 AC 58 ms
72,700 KB
testcase_05 AC 56 ms
72,896 KB
testcase_06 AC 61 ms
79,792 KB
testcase_07 AC 74 ms
89,744 KB
testcase_08 AC 50 ms
73,744 KB
testcase_09 AC 45 ms
63,644 KB
testcase_10 AC 52 ms
71,884 KB
testcase_11 AC 75 ms
88,284 KB
testcase_12 AC 48 ms
67,920 KB
testcase_13 AC 46 ms
63,328 KB
testcase_14 AC 49 ms
64,872 KB
testcase_15 AC 83 ms
91,832 KB
testcase_16 AC 87 ms
93,716 KB
testcase_17 AC 55 ms
74,128 KB
testcase_18 AC 35 ms
53,248 KB
testcase_19 AC 69 ms
86,676 KB
testcase_20 AC 84 ms
95,180 KB
testcase_21 AC 63 ms
76,660 KB
testcase_22 AC 72 ms
84,104 KB
testcase_23 AC 95 ms
102,084 KB
testcase_24 AC 60 ms
77,636 KB
testcase_25 AC 67 ms
86,144 KB
testcase_26 AC 90 ms
96,848 KB
testcase_27 AC 95 ms
103,680 KB
testcase_28 AC 54 ms
75,268 KB
testcase_29 AC 65 ms
82,608 KB
testcase_30 AC 72 ms
91,196 KB
testcase_31 AC 41 ms
62,152 KB
testcase_32 AC 68 ms
89,212 KB
testcase_33 AC 100 ms
107,560 KB
testcase_34 AC 101 ms
107,752 KB
testcase_35 AC 104 ms
107,572 KB
testcase_36 AC 108 ms
107,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


D = {}

for i in range(N):
    if A[i] % M not in D:
        D[A[i] % M] = 0
    D[A[i] % M] += 1
        
ans = 0

S = set()
for k,v in D.items():
    if k == M-k:
        ans += 1
    elif k == 0:
        ans += 1
    else:
        if k not in S:
            if M-k in D:
                ans += max(D[k],D[M-k])
                S.add(M-k)
            else:
                ans += D[k]
                
print(ans)
#print(D)
0