結果

問題 No.1972 Modulo Set
ユーザー ygd.ygd.
提出日時 2022-06-10 21:55:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 995 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 690,228 KB
最終ジャッジ日時 2024-09-21 06:14:51
合計ジャッジ時間 6,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,496 KB
testcase_01 AC 42 ms
52,864 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 57 ms
67,328 KB
testcase_04 AC 60 ms
69,248 KB
testcase_05 AC 59 ms
70,272 KB
testcase_06 AC 66 ms
76,160 KB
testcase_07 AC 74 ms
82,816 KB
testcase_08 AC 58 ms
70,656 KB
testcase_09 AC 58 ms
65,280 KB
testcase_10 AC 56 ms
69,504 KB
testcase_11 AC 73 ms
82,176 KB
testcase_12 AC 56 ms
66,944 KB
testcase_13 AC 62 ms
72,636 KB
testcase_14 AC 63 ms
70,528 KB
testcase_15 AC 84 ms
87,552 KB
testcase_16 AC 94 ms
92,800 KB
testcase_17 AC 68 ms
74,368 KB
testcase_18 AC 49 ms
61,568 KB
testcase_19 AC 87 ms
90,052 KB
testcase_20 AC 96 ms
94,592 KB
testcase_21 AC 76 ms
75,648 KB
testcase_22 AC 87 ms
89,472 KB
testcase_23 AC 190 ms
186,880 KB
testcase_24 AC 159 ms
174,292 KB
testcase_25 AC 184 ms
197,632 KB
testcase_26 AC 98 ms
94,592 KB
testcase_27 AC 226 ms
234,880 KB
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

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

    dic = defaultdict(int)
    for a in A:
        dic[a%M] += 1
    
    ans = 0
    if M%2 == 0:
        ans += min(1, dic[0])
        for i in range(1,M//2):
            ans += max(dic[i], dic[M-i])
        ans += min(1, dic[M//2])
    else:
        ans += min(1, dic[0])
        for i in range(1,(M+1)//2):
            ans += max(dic[i], dic[M-i])

    print(ans)

if __name__ == '__main__':
    main()
0