結果

問題 No.1751 Fortune Nim
ユーザー Eki1009Eki1009
提出日時 2021-11-19 22:20:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 92,632 KB
最終ジャッジ日時 2024-06-10 09:27:27
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,632 KB
testcase_01 AC 37 ms
51,688 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
53,296 KB
testcase_06 AC 36 ms
52,952 KB
testcase_07 AC 39 ms
52,092 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 65 ms
86,236 KB
testcase_17 AC 61 ms
79,684 KB
testcase_18 AC 73 ms
89,556 KB
testcase_19 AC 59 ms
78,484 KB
testcase_20 AC 76 ms
91,940 KB
testcase_21 AC 70 ms
83,640 KB
testcase_22 AC 77 ms
92,172 KB
testcase_23 AC 72 ms
87,540 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 72 ms
91,564 KB
testcase_29 AC 72 ms
91,672 KB
testcase_30 AC 72 ms
92,112 KB
testcase_31 AC 74 ms
91,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
s = sum(map(int,input().split()))
if n == 1:
    print(665496236)
    exit()
ans = (1-pow(pow(-3,mod-2,mod),s,mod))*(mod+1)//2%mod
print(ans)
0