結果

問題 No.1258 コインゲーム
ユーザー tonyu0tonyu0
提出日時 2020-10-17 02:18:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,900 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-21 01:42:57
合計ジャッジ時間 57,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 390 ms
10,752 KB
testcase_01 AC 476 ms
10,624 KB
testcase_02 AC 193 ms
10,624 KB
testcase_03 AC 1,498 ms
10,624 KB
testcase_04 AC 1,707 ms
10,624 KB
testcase_05 AC 291 ms
10,624 KB
testcase_06 AC 1,231 ms
10,496 KB
testcase_07 AC 146 ms
10,496 KB
testcase_08 AC 131 ms
10,624 KB
testcase_09 AC 632 ms
10,624 KB
testcase_10 AC 1,497 ms
10,624 KB
testcase_11 AC 1,657 ms
10,624 KB
testcase_12 AC 1,212 ms
10,752 KB
testcase_13 AC 392 ms
10,624 KB
testcase_14 AC 141 ms
10,624 KB
testcase_15 AC 1,437 ms
10,624 KB
testcase_16 AC 313 ms
10,624 KB
testcase_17 AC 1,641 ms
10,624 KB
testcase_18 AC 627 ms
10,496 KB
testcase_19 AC 567 ms
10,752 KB
testcase_20 AC 1,210 ms
10,752 KB
testcase_21 AC 1,563 ms
10,752 KB
testcase_22 AC 1,072 ms
10,624 KB
testcase_23 AC 798 ms
10,496 KB
testcase_24 AC 315 ms
10,752 KB
testcase_25 AC 758 ms
10,624 KB
testcase_26 AC 660 ms
10,752 KB
testcase_27 AC 1,513 ms
10,496 KB
testcase_28 AC 412 ms
10,624 KB
testcase_29 AC 436 ms
10,752 KB
testcase_30 AC 1,840 ms
10,624 KB
testcase_31 AC 481 ms
10,752 KB
testcase_32 AC 225 ms
10,752 KB
testcase_33 AC 1,255 ms
10,624 KB
testcase_34 AC 1,554 ms
10,496 KB
testcase_35 AC 556 ms
10,496 KB
testcase_36 AC 1,520 ms
10,624 KB
testcase_37 AC 607 ms
10,624 KB
testcase_38 AC 1,423 ms
10,624 KB
testcase_39 AC 418 ms
10,496 KB
testcase_40 AC 1,885 ms
10,624 KB
testcase_41 AC 1,873 ms
10,624 KB
testcase_42 AC 1,874 ms
10,752 KB
testcase_43 AC 1,884 ms
10,752 KB
testcase_44 AC 1,897 ms
10,752 KB
testcase_45 AC 1,871 ms
10,496 KB
testcase_46 AC 1,895 ms
10,624 KB
testcase_47 AC 1,873 ms
10,752 KB
testcase_48 AC 1,900 ms
10,624 KB
testcase_49 AC 1,870 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
s = int(input())

for i in range(s):
    n, m, k = map(int, input().split())
    # ΣnCk*m^k*1^(n-k)=(1+m)^n
    res = pow(m + 1, n, mod)
    if k:  # mの奇数乗が残る
        res = (res - pow(1 - m, n, mod)) % mod
    else:
        res = (res + pow(1 - m, n, mod)) % mod
    res = res * pow(2, mod - 2, mod) % mod
    print(res)
0