結果

問題 No.2260 Adic Sum
ユーザー flippergoflippergo
提出日時 2024-11-06 11:06:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 193,132 KB
最終ジャッジ日時 2024-11-06 11:06:41
合計ジャッジ時間 7,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,580 KB
testcase_01 AC 42 ms
52,448 KB
testcase_02 AC 42 ms
52,264 KB
testcase_03 AC 40 ms
52,656 KB
testcase_04 AC 43 ms
53,048 KB
testcase_05 AC 39 ms
52,408 KB
testcase_06 AC 38 ms
53,480 KB
testcase_07 AC 39 ms
52,292 KB
testcase_08 AC 52 ms
64,076 KB
testcase_09 AC 46 ms
61,044 KB
testcase_10 AC 49 ms
62,828 KB
testcase_11 AC 40 ms
52,640 KB
testcase_12 AC 54 ms
65,528 KB
testcase_13 AC 45 ms
61,440 KB
testcase_14 AC 76 ms
84,936 KB
testcase_15 AC 90 ms
96,260 KB
testcase_16 AC 58 ms
74,652 KB
testcase_17 AC 93 ms
100,104 KB
testcase_18 AC 388 ms
168,436 KB
testcase_19 AC 383 ms
177,436 KB
testcase_20 AC 274 ms
142,352 KB
testcase_21 AC 377 ms
141,976 KB
testcase_22 AC 258 ms
158,384 KB
testcase_23 AC 196 ms
128,268 KB
testcase_24 AC 384 ms
175,904 KB
testcase_25 AC 116 ms
106,468 KB
testcase_26 AC 113 ms
103,208 KB
testcase_27 AC 147 ms
106,736 KB
testcase_28 AC 116 ms
106,340 KB
testcase_29 AC 116 ms
106,292 KB
testcase_30 AC 124 ms
99,464 KB
testcase_31 AC 346 ms
105,304 KB
testcase_32 AC 348 ms
102,476 KB
testcase_33 AC 107 ms
91,996 KB
testcase_34 AC 121 ms
94,612 KB
testcase_35 AC 555 ms
193,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,p = map(int,input().split())
A = list(map(int,input().split()))
ans = 0
k = 1
while True:
    C = {}
    for i in range(N):
        C[A[i]%pow(p,k)] = C.get(A[i]%pow(p,k),0)+1
    if len(C)==N:break
    for a in C:
        ans += (C[a]*(C[a]-1))//2
    k += 1
print(ans)
0