結果

問題 No.2260 Adic Sum
ユーザー とりゐとりゐ
提出日時 2023-04-08 20:55:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 211,520 KB
最終ジャッジ日時 2024-10-06 07:28:50
合計ジャッジ時間 12,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,752 KB
testcase_01 AC 41 ms
54,508 KB
testcase_02 AC 42 ms
54,972 KB
testcase_03 AC 42 ms
54,008 KB
testcase_04 AC 47 ms
62,144 KB
testcase_05 AC 47 ms
61,312 KB
testcase_06 AC 46 ms
61,624 KB
testcase_07 AC 47 ms
61,272 KB
testcase_08 AC 67 ms
76,436 KB
testcase_09 AC 52 ms
66,988 KB
testcase_10 AC 61 ms
73,468 KB
testcase_11 AC 53 ms
65,164 KB
testcase_12 AC 62 ms
74,440 KB
testcase_13 AC 71 ms
76,472 KB
testcase_14 AC 242 ms
106,564 KB
testcase_15 AC 343 ms
127,960 KB
testcase_16 AC 212 ms
104,032 KB
testcase_17 AC 373 ms
135,820 KB
testcase_18 AC 511 ms
198,760 KB
testcase_19 AC 553 ms
211,520 KB
testcase_20 AC 567 ms
209,820 KB
testcase_21 AC 569 ms
203,020 KB
testcase_22 AC 594 ms
199,988 KB
testcase_23 AC 549 ms
157,680 KB
testcase_24 AC 545 ms
207,376 KB
testcase_25 AC 556 ms
176,532 KB
testcase_26 AC 524 ms
163,936 KB
testcase_27 AC 570 ms
173,996 KB
testcase_28 AC 556 ms
173,600 KB
testcase_29 AC 557 ms
178,944 KB
testcase_30 AC 550 ms
169,912 KB
testcase_31 AC 267 ms
90,836 KB
testcase_32 AC 266 ms
90,968 KB
testcase_33 AC 490 ms
170,560 KB
testcase_34 AC 498 ms
182,028 KB
testcase_35 AC 498 ms
178,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

from collections import defaultdict, deque

n,p=map(int,input().split())
a=list(map(int,input().split()))
ans=0
for i in range(1,30):
  mod=p**i
  cnt=defaultdict(int)
  for j in a:
    ans+=cnt[j%mod]
    cnt[j%mod]+=1
    
print(ans)
0