結果

問題 No.2260 Adic Sum
ユーザー simansiman
提出日時 2023-04-09 23:38:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 985 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 61,120 KB
最終ジャッジ日時 2024-10-06 07:30:01
合計ジャッジ時間 11,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 90 ms
12,416 KB
testcase_02 AC 87 ms
12,032 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 88 ms
12,416 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 88 ms
12,288 KB
testcase_09 AC 87 ms
12,032 KB
testcase_10 AC 88 ms
12,416 KB
testcase_11 AC 86 ms
12,032 KB
testcase_12 AC 87 ms
12,160 KB
testcase_13 AC 90 ms
12,288 KB
testcase_14 AC 119 ms
17,408 KB
testcase_15 AC 127 ms
18,944 KB
testcase_16 AC 113 ms
16,256 KB
testcase_17 AC 137 ms
19,200 KB
testcase_18 AC 613 ms
42,508 KB
testcase_19 AC 658 ms
42,692 KB
testcase_20 AC 462 ms
31,588 KB
testcase_21 AC 471 ms
31,852 KB
testcase_22 AC 414 ms
30,976 KB
testcase_23 AC 329 ms
29,952 KB
testcase_24 AC 653 ms
39,364 KB
testcase_25 AC 165 ms
23,808 KB
testcase_26 AC 160 ms
24,064 KB
testcase_27 AC 166 ms
24,704 KB
testcase_28 AC 162 ms
24,576 KB
testcase_29 AC 161 ms
24,064 KB
testcase_30 AC 186 ms
21,632 KB
testcase_31 AC 788 ms
24,320 KB
testcase_32 AC 803 ms
26,496 KB
testcase_33 AC 188 ms
25,216 KB
testcase_34 AC 299 ms
29,312 KB
testcase_35 AC 985 ms
61,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, P = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
m = A.max

x = P
ans = 0

while x <= m
  memo = Hash.new(0)

  A.each do |a|
    ans += memo[a % x]
    memo[a % x] += 1
  end

  x *= P
end

puts ans
0