結果

問題 No.1258 コインゲーム
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-17 17:37:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,528 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-15 12:31:16
合計ジャッジ時間 46,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
10,624 KB
testcase_01 AC 377 ms
10,624 KB
testcase_02 AC 152 ms
10,624 KB
testcase_03 AC 1,159 ms
10,624 KB
testcase_04 AC 1,308 ms
10,624 KB
testcase_05 AC 237 ms
10,624 KB
testcase_06 AC 971 ms
10,624 KB
testcase_07 AC 120 ms
10,624 KB
testcase_08 AC 106 ms
10,624 KB
testcase_09 AC 488 ms
10,624 KB
testcase_10 AC 1,142 ms
10,624 KB
testcase_11 AC 1,329 ms
10,752 KB
testcase_12 AC 945 ms
10,752 KB
testcase_13 AC 307 ms
10,752 KB
testcase_14 AC 117 ms
10,624 KB
testcase_15 AC 1,115 ms
10,752 KB
testcase_16 AC 240 ms
10,624 KB
testcase_17 AC 1,304 ms
10,752 KB
testcase_18 AC 495 ms
10,624 KB
testcase_19 AC 449 ms
10,752 KB
testcase_20 AC 943 ms
10,624 KB
testcase_21 AC 1,232 ms
10,624 KB
testcase_22 AC 859 ms
10,624 KB
testcase_23 AC 634 ms
10,624 KB
testcase_24 AC 255 ms
10,624 KB
testcase_25 AC 610 ms
10,752 KB
testcase_26 AC 522 ms
10,752 KB
testcase_27 AC 1,170 ms
10,624 KB
testcase_28 AC 346 ms
10,752 KB
testcase_29 AC 339 ms
10,624 KB
testcase_30 AC 1,433 ms
10,752 KB
testcase_31 AC 390 ms
10,752 KB
testcase_32 AC 178 ms
10,624 KB
testcase_33 AC 978 ms
10,752 KB
testcase_34 AC 1,214 ms
10,624 KB
testcase_35 AC 441 ms
10,752 KB
testcase_36 AC 1,178 ms
10,624 KB
testcase_37 AC 477 ms
10,624 KB
testcase_38 AC 1,131 ms
10,752 KB
testcase_39 AC 340 ms
10,624 KB
testcase_40 AC 1,528 ms
10,624 KB
testcase_41 AC 1,493 ms
10,624 KB
testcase_42 AC 1,485 ms
10,624 KB
testcase_43 AC 1,481 ms
10,624 KB
testcase_44 AC 1,474 ms
10,624 KB
testcase_45 AC 1,450 ms
10,752 KB
testcase_46 AC 1,479 ms
10,624 KB
testcase_47 AC 1,464 ms
10,624 KB
testcase_48 AC 1,487 ms
10,624 KB
testcase_49 AC 1,449 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
S = int(input())
div2 = pow(2, mod-2, mod)
for _ in range(S):
    N, M, X = map(int, input().split())
    if X == 0:
        ans = (pow(1 - M, N, mod) + pow(1 + M, N, mod)) * div2 % mod
    else:
        ans = (pow(1 + M, N, mod) - pow(1 - M, N, mod)) * div2 % mod
    print(ans)
0