結果

問題 No.2260 Adic Sum
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-05 22:21:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,052 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 230,964 KB
最終ジャッジ日時 2024-09-05 22:21:35
合計ジャッジ時間 10,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,560 KB
testcase_01 AC 38 ms
54,040 KB
testcase_02 AC 38 ms
52,892 KB
testcase_03 AC 38 ms
52,792 KB
testcase_04 AC 38 ms
53,052 KB
testcase_05 AC 38 ms
52,712 KB
testcase_06 AC 38 ms
52,776 KB
testcase_07 AC 39 ms
53,572 KB
testcase_08 AC 48 ms
63,248 KB
testcase_09 AC 57 ms
61,828 KB
testcase_10 AC 49 ms
63,872 KB
testcase_11 AC 39 ms
53,052 KB
testcase_12 AC 50 ms
64,296 KB
testcase_13 AC 47 ms
63,320 KB
testcase_14 AC 71 ms
79,140 KB
testcase_15 AC 84 ms
87,168 KB
testcase_16 AC 65 ms
76,264 KB
testcase_17 AC 88 ms
89,704 KB
testcase_18 AC 580 ms
201,244 KB
testcase_19 AC 681 ms
202,612 KB
testcase_20 AC 423 ms
147,756 KB
testcase_21 AC 426 ms
147,744 KB
testcase_22 AC 356 ms
151,916 KB
testcase_23 AC 241 ms
115,072 KB
testcase_24 AC 636 ms
192,032 KB
testcase_25 AC 110 ms
104,168 KB
testcase_26 AC 107 ms
100,708 KB
testcase_27 AC 114 ms
104,636 KB
testcase_28 AC 122 ms
103,816 KB
testcase_29 AC 110 ms
104,344 KB
testcase_30 AC 130 ms
91,352 KB
testcase_31 AC 634 ms
126,572 KB
testcase_32 AC 668 ms
126,644 KB
testcase_33 AC 110 ms
92,780 KB
testcase_34 AC 206 ms
138,788 KB
testcase_35 AC 1,052 ms
230,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
c=[{} for i in range(40)]
L=10**10
g=0
for v in a:
  for i in range(1,40):
    if p**i<L:
      y=v%(p**i)
      if y not in c[i]:
        c[i][y]=0
      g+=c[i][y]
      c[i][y]+=1
    else:
      break
print(g)
0