結果

問題 No.1259 スイッチ
ユーザー simansiman
提出日時 2023-06-29 11:44:27
言語 Ruby
(3.4.1)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-07-06 03:06:55
合計ジャッジ時間 14,226 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
12,032 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 73 ms
12,416 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 73 ms
12,160 KB
testcase_06 AC 72 ms
12,160 KB
testcase_07 AC 72 ms
12,160 KB
testcase_08 AC 72 ms
12,288 KB
testcase_09 AC 72 ms
12,160 KB
testcase_10 AC 193 ms
16,896 KB
testcase_11 AC 259 ms
19,584 KB
testcase_12 AC 188 ms
16,512 KB
testcase_13 AC 139 ms
14,848 KB
testcase_14 AC 170 ms
16,000 KB
testcase_15 AC 141 ms
14,720 KB
testcase_16 AC 230 ms
18,432 KB
testcase_17 AC 166 ms
15,744 KB
testcase_18 AC 249 ms
19,200 KB
testcase_19 AC 248 ms
18,944 KB
testcase_20 AC 207 ms
16,896 KB
testcase_21 AC 276 ms
19,840 KB
testcase_22 AC 143 ms
14,592 KB
testcase_23 AC 248 ms
18,944 KB
testcase_24 AC 207 ms
17,024 KB
testcase_25 AC 202 ms
17,152 KB
testcase_26 AC 270 ms
19,840 KB
testcase_27 AC 237 ms
18,304 KB
testcase_28 AC 201 ms
17,152 KB
testcase_29 AC 233 ms
18,176 KB
testcase_30 AC 173 ms
16,000 KB
testcase_31 AC 218 ms
17,792 KB
testcase_32 AC 150 ms
14,592 KB
testcase_33 AC 271 ms
19,840 KB
testcase_34 AC 182 ms
16,512 KB
testcase_35 AC 225 ms
17,920 KB
testcase_36 AC 215 ms
17,536 KB
testcase_37 AC 242 ms
17,280 KB
testcase_38 AC 197 ms
16,896 KB
testcase_39 AC 260 ms
19,456 KB
testcase_40 AC 267 ms
19,584 KB
testcase_41 AC 236 ms
18,176 KB
testcase_42 AC 276 ms
19,840 KB
testcase_43 AC 195 ms
16,768 KB
testcase_44 AC 261 ms
19,328 KB
testcase_45 AC 279 ms
20,096 KB
testcase_46 AC 184 ms
16,384 KB
testcase_47 AC 275 ms
19,840 KB
testcase_48 AC 171 ms
15,744 KB
testcase_49 AC 268 ms
19,712 KB
testcase_50 AC 217 ms
16,384 KB
testcase_51 AC 162 ms
14,336 KB
testcase_52 AC 308 ms
19,584 KB
testcase_53 AC 156 ms
15,360 KB
testcase_54 AC 259 ms
19,584 KB
testcase_55 AC 132 ms
14,592 KB
testcase_56 AC 171 ms
15,872 KB
testcase_57 AC 248 ms
18,944 KB
testcase_58 AC 191 ms
16,512 KB
testcase_59 AC 217 ms
17,664 KB
testcase_60 AC 272 ms
19,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Integer
  def mod_inverse(mod)
    self.pow(mod - 2, mod)
  end
end

N, K, M = gets.split.map(&:to_i)
MOD = 10 ** 9 + 7
ans = 0
memo = Array.new(N + 1, 0)
memo[0] = 1
val = 1
1.upto(N - 1) do |l|
  val *= (N - l)
  val %= MOD
  memo[l] = val
end

if M == 1
  1.upto(N) do |ls|
    next if K % ls != 0

    ans += memo[ls - 1] * N.pow(N - ls, MOD)
    ans %= MOD
  end
else
  ans = N.pow(N, MOD)

  1.upto(N) do |ls|
    next if K % ls != 0

    ans += -1 * memo[ls - 1] * N.pow(N - ls, MOD)
    ans %= MOD
  end

  ans *= (N - 1).mod_inverse(MOD)
  ans %= MOD
end

puts ans
0