結果

問題 No.1258 コインゲーム
ユーザー jensenjensen
提出日時 2021-01-09 13:45:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,251 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-11-17 17:02:00
合計ジャッジ時間 36,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
18,432 KB
testcase_01 AC 293 ms
20,992 KB
testcase_02 AC 120 ms
14,208 KB
testcase_03 AC 930 ms
44,032 KB
testcase_04 AC 1,051 ms
48,512 KB
testcase_05 AC 192 ms
16,640 KB
testcase_06 AC 761 ms
38,272 KB
testcase_07 AC 95 ms
13,184 KB
testcase_08 AC 83 ms
12,928 KB
testcase_09 AC 383 ms
24,192 KB
testcase_10 AC 926 ms
43,776 KB
testcase_11 AC 1,022 ms
47,744 KB
testcase_12 AC 746 ms
37,504 KB
testcase_13 AC 239 ms
18,560 KB
testcase_14 AC 90 ms
12,928 KB
testcase_15 AC 900 ms
43,136 KB
testcase_16 AC 189 ms
16,768 KB
testcase_17 AC 1,013 ms
47,360 KB
testcase_18 AC 380 ms
23,936 KB
testcase_19 AC 352 ms
23,040 KB
testcase_20 AC 756 ms
37,504 KB
testcase_21 AC 963 ms
44,928 KB
testcase_22 AC 728 ms
34,560 KB
testcase_23 AC 489 ms
28,288 KB
testcase_24 AC 192 ms
17,152 KB
testcase_25 AC 462 ms
27,520 KB
testcase_26 AC 404 ms
24,960 KB
testcase_27 AC 937 ms
44,160 KB
testcase_28 AC 249 ms
19,072 KB
testcase_29 AC 265 ms
19,712 KB
testcase_30 AC 1,172 ms
52,224 KB
testcase_31 AC 299 ms
20,864 KB
testcase_32 AC 141 ms
15,104 KB
testcase_33 AC 780 ms
38,144 KB
testcase_34 AC 973 ms
45,184 KB
testcase_35 AC 343 ms
22,528 KB
testcase_36 AC 946 ms
44,416 KB
testcase_37 AC 375 ms
23,808 KB
testcase_38 AC 895 ms
42,368 KB
testcase_39 AC 280 ms
19,200 KB
testcase_40 AC 1,251 ms
53,888 KB
testcase_41 AC 1,176 ms
53,632 KB
testcase_42 AC 1,175 ms
53,888 KB
testcase_43 AC 1,177 ms
53,888 KB
testcase_44 AC 1,186 ms
53,888 KB
testcase_45 AC 1,185 ms
53,632 KB
testcase_46 AC 1,173 ms
54,016 KB
testcase_47 AC 1,186 ms
54,016 KB
testcase_48 AC 1,171 ms
53,760 KB
testcase_49 AC 1,180 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
num_list=[map(int,input().split()) for i in range(k)]
mod=10**9+7

for i in range(k):
    [n,m,x]=num_list[i]
    if(x==0):
        a=pow(1+m,n,mod)+pow(1-m,n,mod)
        if(a%2==1):
            a+=mod
        a=int(a/2)
    else:
        a=pow(1+m,n,mod)-pow(1-m,n,mod)
        if(a%2==1):
            a+=mod
        a=int(a/2)

    print(a%mod)
0