結果

問題 No.1206 OR, OR, OR......
ユーザー 👑 KazunKazun
提出日時 2020-08-30 15:40:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-11-15 09:55:46
合計ジャッジ時間 1,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,728 KB
testcase_01 AC 38 ms
53,496 KB
testcase_02 AC 38 ms
53,068 KB
testcase_03 AC 39 ms
53,492 KB
testcase_04 AC 40 ms
54,236 KB
testcase_05 AC 38 ms
52,952 KB
testcase_06 AC 39 ms
53,192 KB
testcase_07 AC 38 ms
52,548 KB
testcase_08 AC 38 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
Mod=998244353

X=[0]*T
for i in range(T):
    N,K=map(int,input().split())
    alpha=pow(2,(N-1)*K,Mod)
    beta=pow(2,K,Mod)
    X[i]=(N*alpha*(beta-1))%Mod

print("\n".join(map(str,X)))
0