結果

問題 No.2260 Adic Sum
ユーザー vwxyzvwxyz
提出日時 2023-04-07 23:00:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 759 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 70,832 KB
最終ジャッジ日時 2024-10-06 07:22:34
合計ジャッジ時間 8,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 33 ms
11,008 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 33 ms
11,392 KB
testcase_14 AC 83 ms
19,220 KB
testcase_15 AC 107 ms
23,192 KB
testcase_16 AC 74 ms
17,932 KB
testcase_17 AC 124 ms
24,280 KB
testcase_18 AC 417 ms
20,696 KB
testcase_19 AC 446 ms
21,424 KB
testcase_20 AC 331 ms
21,236 KB
testcase_21 AC 340 ms
21,188 KB
testcase_22 AC 297 ms
21,156 KB
testcase_23 AC 259 ms
22,196 KB
testcase_24 AC 466 ms
23,928 KB
testcase_25 AC 171 ms
34,620 KB
testcase_26 AC 166 ms
34,400 KB
testcase_27 AC 175 ms
34,312 KB
testcase_28 AC 165 ms
34,216 KB
testcase_29 AC 173 ms
34,260 KB
testcase_30 AC 204 ms
20,864 KB
testcase_31 AC 759 ms
70,820 KB
testcase_32 AC 750 ms
70,832 KB
testcase_33 AC 171 ms
22,392 KB
testcase_34 AC 247 ms
22,268 KB
testcase_35 AC 640 ms
21,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,P=map(int,input().split())
def solve(A):
  if len(A)==1:
    return 0
  dct=defaultdict(list)
  for a in A:
    dct[a%P].append(a)
  ans=0
  for a,A in dct.items():
    le=len(A)
    ans+=solve([(aa-a)//P for aa in A])+le*(le-1)//2
  return ans
A=list(map(int,input().split()))
ans=solve(A)
print(ans)
0