結果

問題 No.1258 コインゲーム
ユーザー zkouzkou
提出日時 2020-10-16 22:03:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,224 KB
最終ジャッジ日時 2024-07-20 21:47:08
合計ジャッジ時間 12,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
80,128 KB
testcase_01 AC 115 ms
83,584 KB
testcase_02 AC 71 ms
70,144 KB
testcase_03 AC 248 ms
104,448 KB
testcase_04 AC 289 ms
108,416 KB
testcase_05 AC 83 ms
75,264 KB
testcase_06 AC 218 ms
99,968 KB
testcase_07 AC 62 ms
66,560 KB
testcase_08 AC 60 ms
66,176 KB
testcase_09 AC 133 ms
87,040 KB
testcase_10 AC 256 ms
104,064 KB
testcase_11 AC 267 ms
107,776 KB
testcase_12 AC 210 ms
100,096 KB
testcase_13 AC 101 ms
80,128 KB
testcase_14 AC 61 ms
66,432 KB
testcase_15 AC 247 ms
103,680 KB
testcase_16 AC 92 ms
75,392 KB
testcase_17 AC 270 ms
107,264 KB
testcase_18 AC 134 ms
87,296 KB
testcase_19 AC 126 ms
85,760 KB
testcase_20 AC 212 ms
99,712 KB
testcase_21 AC 253 ms
107,136 KB
testcase_22 AC 194 ms
96,896 KB
testcase_23 AC 157 ms
90,496 KB
testcase_24 AC 88 ms
76,032 KB
testcase_25 AC 154 ms
90,240 KB
testcase_26 AC 138 ms
87,168 KB
testcase_27 AC 259 ms
104,192 KB
testcase_28 AC 109 ms
82,816 KB
testcase_29 AC 109 ms
82,688 KB
testcase_30 AC 298 ms
111,872 KB
testcase_31 AC 114 ms
83,712 KB
testcase_32 AC 73 ms
71,296 KB
testcase_33 AC 216 ms
100,224 KB
testcase_34 AC 255 ms
107,008 KB
testcase_35 AC 127 ms
85,888 KB
testcase_36 AC 252 ms
104,448 KB
testcase_37 AC 130 ms
86,400 KB
testcase_38 AC 238 ms
103,424 KB
testcase_39 AC 111 ms
82,432 KB
testcase_40 AC 302 ms
115,840 KB
testcase_41 AC 303 ms
115,968 KB
testcase_42 AC 301 ms
115,840 KB
testcase_43 AC 309 ms
115,840 KB
testcase_44 AC 315 ms
115,840 KB
testcase_45 AC 302 ms
116,224 KB
testcase_46 AC 302 ms
115,712 KB
testcase_47 AC 305 ms
115,968 KB
testcase_48 AC 319 ms
115,712 KB
testcase_49 AC 327 ms
115,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
read = sys.stdin.buffer.read

MOD = 10 ** 9 + 7


S = int(input())
m = map(int, read().split())
ans = []
for N, M, X in zip(m, m, m):
    if X == 0:
        ans.append((pow(M + 1, N, MOD) + pow(1 - M, N, MOD)) * 500000004 % MOD)
    else:
        ans.append((pow(M + 1, N, MOD) - pow(1 - M, N, MOD)) * 500000004 % MOD)

print('\n'.join(map(str, ans)))
0