結果

問題 No.1972 Modulo Set
ユーザー jensenjensen
提出日時 2022-06-28 18:33:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 415 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,428 KB
最終ジャッジ日時 2024-11-21 12:47:46
合計ジャッジ時間 91,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,572 KB
testcase_01 AC 28 ms
27,416 KB
testcase_02 AC 27 ms
17,568 KB
testcase_03 AC 1,941 ms
32,600 KB
testcase_04 TLE -
testcase_05 AC 1,664 ms
34,176 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,017 ms
21,996 KB
testcase_09 AC 361 ms
22,400 KB
testcase_10 AC 1,679 ms
20,836 KB
testcase_11 TLE -
testcase_12 AC 1,018 ms
18,852 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 47 ms
17,572 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=list(map(int,input().split()))
seq=list(map(int,input().split()))
cnt=0
for i in range(len(seq)):
    seq[i]=seq[i]%m
    
if seq.count(0)>0:
    cnt+=1
    
if m%2==0:
    
    if seq.count(int(m/2)): cnt+=1
    
    for i in range(1,int(m/2)):
        cnt+=max(seq.count(i),seq.count(m-i))
    
    
else:
    for i in range(1,int((m-1)/2)+1):
        cnt+=max(seq.count(i),seq.count(m-i))
        
print(cnt)
0