結果

問題 No.2260 Adic Sum
ユーザー karinohitokarinohito
提出日時 2023-03-20 01:26:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 179,080 KB
最終ジャッジ日時 2024-10-06 06:52:56
合計ジャッジ時間 6,378 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,248 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 38 ms
53,504 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 41 ms
53,572 KB
testcase_08 AC 50 ms
64,384 KB
testcase_09 AC 45 ms
60,928 KB
testcase_10 AC 49 ms
63,104 KB
testcase_11 AC 40 ms
54,272 KB
testcase_12 AC 51 ms
65,152 KB
testcase_13 AC 47 ms
62,336 KB
testcase_14 AC 61 ms
78,336 KB
testcase_15 AC 68 ms
85,888 KB
testcase_16 AC 56 ms
75,008 KB
testcase_17 AC 71 ms
87,808 KB
testcase_18 AC 314 ms
158,252 KB
testcase_19 AC 331 ms
167,648 KB
testcase_20 AC 238 ms
142,980 KB
testcase_21 AC 251 ms
142,640 KB
testcase_22 AC 215 ms
144,884 KB
testcase_23 AC 167 ms
114,456 KB
testcase_24 AC 324 ms
165,052 KB
testcase_25 AC 89 ms
102,948 KB
testcase_26 AC 91 ms
100,096 KB
testcase_27 AC 96 ms
103,296 KB
testcase_28 AC 90 ms
102,912 KB
testcase_29 AC 91 ms
102,912 KB
testcase_30 AC 97 ms
91,008 KB
testcase_31 AC 314 ms
90,876 KB
testcase_32 AC 322 ms
90,752 KB
testcase_33 AC 94 ms
92,592 KB
testcase_34 AC 182 ms
138,184 KB
testcase_35 AC 509 ms
179,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,P=map(int,input().split())
A = list(map(int,input().split()))
an=0
p=P
while p<10**9+3:
    M=defaultdict(int)
    for i in range(N):
        an=an+M[A[i]%p]
        M[A[i]%p]=M[A[i]%p]+1
    p=p*P
print(an)
0