結果
問題 | No.1972 Modulo Set |
ユーザー | Theta |
提出日時 | 2022-11-07 16:21:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 625 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 352,872 KB |
最終ジャッジ日時 | 2024-07-20 23:57:42 |
合計ジャッジ時間 | 8,359 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,828 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 42 ms
13,020 KB |
testcase_04 | AC | 49 ms
13,908 KB |
testcase_05 | AC | 52 ms
14,548 KB |
testcase_06 | AC | 63 ms
16,652 KB |
testcase_07 | AC | 84 ms
19,744 KB |
testcase_08 | AC | 55 ms
15,244 KB |
testcase_09 | AC | 34 ms
11,648 KB |
testcase_10 | AC | 49 ms
14,144 KB |
testcase_11 | AC | 83 ms
19,388 KB |
testcase_12 | AC | 38 ms
12,032 KB |
testcase_13 | AC | 52 ms
13,592 KB |
testcase_14 | AC | 48 ms
13,592 KB |
testcase_15 | AC | 91 ms
18,724 KB |
testcase_16 | AC | 105 ms
20,636 KB |
testcase_17 | AC | 53 ms
14,728 KB |
testcase_18 | AC | 32 ms
11,136 KB |
testcase_19 | AC | 98 ms
20,528 KB |
testcase_20 | AC | 112 ms
20,664 KB |
testcase_21 | AC | 58 ms
15,340 KB |
testcase_22 | AC | 96 ms
19,996 KB |
testcase_23 | AC | 375 ms
57,500 KB |
testcase_24 | AC | 314 ms
33,460 KB |
testcase_25 | AC | 387 ms
55,704 KB |
testcase_26 | AC | 112 ms
22,072 KB |
testcase_27 | AC | 479 ms
57,032 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
from collections import Counter def main(): N, M = map(int, input().split()) set_ = list(map(int, input().split())) modulo_list = map(lambda num: num % M, set_) modulo_counter = Counter(modulo_list) if modulo_counter[0] > 0: modulo_counter[0] = 1 if M % 2 == 0 and modulo_counter[M // 2] > 0: modulo_counter[M // 2] = 1 for num in range(1, (M+1)//2): if modulo_counter[num] > modulo_counter[M-num]: modulo_counter[M-num] = 0 else: modulo_counter[num] = 0 print(sum(modulo_counter.values())) if __name__ == "__main__": main()