結果

問題 No.1258 コインゲーム
ユーザー titiatitia
提出日時 2022-06-15 01:18:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 249 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-29 14:38:47
合計ジャッジ時間 61,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 398 ms
10,752 KB
testcase_01 AC 498 ms
10,752 KB
testcase_02 AC 199 ms
10,752 KB
testcase_03 AC 1,573 ms
10,624 KB
testcase_04 AC 1,768 ms
10,624 KB
testcase_05 AC 308 ms
10,624 KB
testcase_06 AC 1,310 ms
10,624 KB
testcase_07 AC 152 ms
10,624 KB
testcase_08 AC 135 ms
10,752 KB
testcase_09 AC 664 ms
10,752 KB
testcase_10 AC 1,556 ms
10,752 KB
testcase_11 AC 1,745 ms
10,752 KB
testcase_12 AC 1,271 ms
10,752 KB
testcase_13 AC 408 ms
10,752 KB
testcase_14 AC 147 ms
10,624 KB
testcase_15 AC 1,542 ms
10,624 KB
testcase_16 AC 320 ms
10,752 KB
testcase_17 AC 1,709 ms
10,752 KB
testcase_18 AC 682 ms
10,752 KB
testcase_19 AC 605 ms
10,624 KB
testcase_20 AC 1,265 ms
10,624 KB
testcase_21 AC 1,639 ms
10,752 KB
testcase_22 AC 1,127 ms
10,624 KB
testcase_23 AC 849 ms
10,752 KB
testcase_24 AC 326 ms
10,752 KB
testcase_25 AC 869 ms
10,752 KB
testcase_26 AC 692 ms
10,624 KB
testcase_27 AC 1,576 ms
10,752 KB
testcase_28 AC 426 ms
10,624 KB
testcase_29 AC 459 ms
10,624 KB
testcase_30 AC 1,954 ms
10,752 KB
testcase_31 AC 500 ms
10,624 KB
testcase_32 AC 239 ms
10,624 KB
testcase_33 AC 1,313 ms
10,624 KB
testcase_34 AC 1,632 ms
10,624 KB
testcase_35 AC 582 ms
10,752 KB
testcase_36 AC 1,582 ms
10,624 KB
testcase_37 AC 628 ms
10,624 KB
testcase_38 AC 1,486 ms
10,752 KB
testcase_39 AC 443 ms
10,624 KB
testcase_40 AC 1,991 ms
10,752 KB
testcase_41 TLE -
testcase_42 AC 1,998 ms
10,752 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 1,992 ms
10,880 KB
testcase_47 AC 1,992 ms
10,752 KB
testcase_48 AC 1,996 ms
10,880 KB
testcase_49 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7

T=int(input())
for tests in range(T):
    N,M,X=map(int,input().split())

    ALL=pow(1+M,N,mod)
    H=pow(-1+M,N,mod)

    if (X+N)%2==0:
        print((ALL+H)*pow(2,mod-2,mod)%mod)
    else:
        print((ALL-H)*pow(2,mod-2,mod)%mod)
0