結果

問題 No.2260 Adic Sum
ユーザー timitimi
提出日時 2023-04-15 15:15:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 234 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 288,500 KB
最終ジャッジ日時 2024-10-11 01:58:23
合計ジャッジ時間 42,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 44 ms
59,444 KB
testcase_04 AC 45 ms
60,288 KB
testcase_05 AC 45 ms
60,672 KB
testcase_06 AC 45 ms
60,416 KB
testcase_07 AC 45 ms
60,544 KB
testcase_08 AC 91 ms
76,216 KB
testcase_09 AC 63 ms
75,392 KB
testcase_10 AC 80 ms
75,976 KB
testcase_11 AC 51 ms
65,024 KB
testcase_12 AC 78 ms
76,140 KB
testcase_13 AC 102 ms
76,288 KB
testcase_14 AC 785 ms
135,516 KB
testcase_15 AC 1,186 ms
202,276 KB
testcase_16 AC 664 ms
125,704 KB
testcase_17 AC 1,343 ms
221,152 KB
testcase_18 AC 1,837 ms
255,992 KB
testcase_19 AC 1,951 ms
271,532 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,987 ms
288,500 KB
testcase_23 TLE -
testcase_24 AC 1,982 ms
277,224 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,802 ms
216,124 KB
testcase_32 AC 1,797 ms
220,848 KB
testcase_33 AC 1,679 ms
284,856 KB
testcase_34 AC 1,605 ms
281,432 KB
testcase_35 AC 1,866 ms
225,084 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)
print(ans//2)
0