結果

問題 No.1258 コインゲーム
ユーザー semisagisemisagi
提出日時 2020-10-16 21:46:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,686 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-20 21:18:29
合計ジャッジ時間 53,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 389 ms
12,160 KB
testcase_01 AC 465 ms
12,160 KB
testcase_02 AC 231 ms
12,160 KB
testcase_03 AC 1,331 ms
12,160 KB
testcase_04 AC 1,493 ms
12,288 KB
testcase_05 AC 316 ms
12,160 KB
testcase_06 AC 1,099 ms
12,160 KB
testcase_07 AC 192 ms
12,160 KB
testcase_08 AC 179 ms
12,288 KB
testcase_09 AC 594 ms
12,288 KB
testcase_10 AC 1,305 ms
12,288 KB
testcase_11 AC 1,444 ms
12,160 KB
testcase_12 AC 1,080 ms
12,288 KB
testcase_13 AC 395 ms
12,160 KB
testcase_14 AC 191 ms
12,416 KB
testcase_15 AC 1,276 ms
12,288 KB
testcase_16 AC 330 ms
12,160 KB
testcase_17 AC 1,439 ms
12,416 KB
testcase_18 AC 592 ms
12,288 KB
testcase_19 AC 547 ms
12,288 KB
testcase_20 AC 1,077 ms
12,416 KB
testcase_21 AC 1,362 ms
12,288 KB
testcase_22 AC 974 ms
12,288 KB
testcase_23 AC 744 ms
12,160 KB
testcase_24 AC 332 ms
12,160 KB
testcase_25 AC 721 ms
12,416 KB
testcase_26 AC 618 ms
12,288 KB
testcase_27 AC 1,323 ms
12,160 KB
testcase_28 AC 411 ms
12,160 KB
testcase_29 AC 435 ms
12,160 KB
testcase_30 AC 1,625 ms
12,160 KB
testcase_31 AC 474 ms
12,160 KB
testcase_32 AC 262 ms
12,288 KB
testcase_33 AC 1,110 ms
12,160 KB
testcase_34 AC 1,372 ms
12,416 KB
testcase_35 AC 550 ms
12,160 KB
testcase_36 AC 1,353 ms
12,288 KB
testcase_37 AC 589 ms
12,160 KB
testcase_38 AC 1,267 ms
12,288 KB
testcase_39 AC 419 ms
12,160 KB
testcase_40 AC 1,674 ms
12,160 KB
testcase_41 AC 1,676 ms
12,416 KB
testcase_42 AC 1,683 ms
12,416 KB
testcase_43 AC 1,672 ms
12,544 KB
testcase_44 AC 1,670 ms
12,288 KB
testcase_45 AC 1,671 ms
12,288 KB
testcase_46 AC 1,681 ms
12,160 KB
testcase_47 AC 1,682 ms
12,288 KB
testcase_48 AC 1,686 ms
12,160 KB
testcase_49 AC 1,667 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.to_i

MOD = 10**9 + 7

class Integer
    def modpow(n)
        if n.zero?
            1
        elsif n.odd?
            self * self.modpow(n - 1) % MOD
        else
            (self * self % MOD).modpow(n / 2)
        end
    end

    def inverse
        self.modpow(MOD - 2)
    end
end

s.times do
    n, m, x = gets.split.map(&:to_i)
    if x == 0
        puts ((1 + m).modpow(n) + (1 - m).modpow(n)) * 2.inverse % MOD
    else
        puts ((1 + m).modpow(n) - (1 - m).modpow(n)) * 2.inverse % MOD
    end
end
0