結果

問題 No.1972 Modulo Set
ユーザー june19312june19312
提出日時 2022-06-13 17:07:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,028 KB
最終ジャッジ日時 2024-09-25 11:26:51
合計ジャッジ時間 7,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 58 ms
64,000 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 63 ms
66,432 KB
testcase_14 AC 65 ms
67,456 KB
testcase_15 WA -
testcase_16 AC 206 ms
98,216 KB
testcase_17 AC 105 ms
81,024 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 188 ms
93,440 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 174 ms
91,608 KB
testcase_23 AC 339 ms
104,960 KB
testcase_24 AC 154 ms
87,688 KB
testcase_25 AC 215 ms
95,872 KB
testcase_26 WA -
testcase_27 AC 351 ms
105,984 KB
testcase_28 AC 155 ms
87,680 KB
testcase_29 AC 210 ms
96,024 KB
testcase_30 AC 284 ms
104,448 KB
testcase_31 AC 61 ms
65,536 KB
testcase_32 AC 263 ms
101,888 KB
testcase_33 AC 413 ms
107,776 KB
testcase_34 AC 402 ms
107,708 KB
testcase_35 AC 401 ms
107,776 KB
testcase_36 AC 403 ms
108,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dict = {}

for i,v in enumerate(A):
    tmp =v%M
    if tmp not in dict:
        dict[tmp] = 1
    else:
        dict[tmp]+=1

tmp = []

for i,v in dict.items():
    tmp.append([v,i])

tmp.sort()
tmp.reverse()

#print(tmp)

ans = 0
#print(dict)
for i,v in enumerate(tmp):
    a,b = v[0],v[1]

    if b*2 == M:
        ans+=1
    else:
        #print("a=",a,"b=",b)
        #print("dict[b]",dict[b])
        ans+=dict[b]
        if (M-b) in dict:
            dict[M-b] = 0

print(ans)
0