結果

問題 No.2260 Adic Sum
ユーザー timitimi
提出日時 2023-04-15 15:16:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 186,044 KB
最終ジャッジ日時 2024-10-11 01:58:33
合計ジャッジ時間 6,578 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 49 ms
61,952 KB
testcase_09 AC 44 ms
59,136 KB
testcase_10 AC 47 ms
61,184 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 49 ms
62,464 KB
testcase_13 AC 45 ms
60,928 KB
testcase_14 AC 76 ms
83,968 KB
testcase_15 AC 91 ms
95,360 KB
testcase_16 AC 58 ms
73,600 KB
testcase_17 AC 94 ms
99,072 KB
testcase_18 AC 316 ms
161,060 KB
testcase_19 AC 329 ms
171,720 KB
testcase_20 AC 256 ms
156,268 KB
testcase_21 AC 256 ms
156,156 KB
testcase_22 AC 233 ms
158,364 KB
testcase_23 AC 183 ms
128,180 KB
testcase_24 AC 326 ms
170,804 KB
testcase_25 AC 119 ms
111,488 KB
testcase_26 AC 118 ms
109,952 KB
testcase_27 AC 123 ms
107,904 KB
testcase_28 AC 117 ms
111,360 KB
testcase_29 AC 120 ms
110,208 KB
testcase_30 AC 122 ms
98,420 KB
testcase_31 AC 234 ms
101,508 KB
testcase_32 AC 231 ms
100,324 KB
testcase_33 AC 97 ms
93,568 KB
testcase_34 AC 110 ms
94,488 KB
testcase_35 AC 500 ms
186,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P=map(int, input().split())
A=list(map(int, input().split()))
ans=0
for i in range(1,100):
  D={}
  PP=pow(P,i)
  for a in A:
    b=a%PP 
    if b not in D:
      D[b]=0
    D[b]+=1
  for d in D:
    ans+=D[d]*(D[d]-1)
  if len(D)==N:
    break
print(ans//2)
0