結果

問題 No.1751 Fortune Nim
ユーザー Eki1009Eki1009
提出日時 2021-11-19 23:06:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-06-10 10:32:11
合計ジャッジ時間 3,636 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 68 ms
93,312 KB
testcase_09 WA -
testcase_10 AC 60 ms
86,784 KB
testcase_11 WA -
testcase_12 AC 59 ms
85,376 KB
testcase_13 AC 75 ms
101,888 KB
testcase_14 AC 63 ms
90,112 KB
testcase_15 AC 63 ms
92,796 KB
testcase_16 AC 71 ms
97,536 KB
testcase_17 AC 65 ms
90,240 KB
testcase_18 AC 79 ms
102,648 KB
testcase_19 AC 65 ms
89,216 KB
testcase_20 AC 83 ms
107,904 KB
testcase_21 AC 71 ms
94,064 KB
testcase_22 AC 84 ms
107,392 KB
testcase_23 AC 75 ms
101,632 KB
testcase_24 AC 87 ms
101,868 KB
testcase_25 WA -
testcase_26 AC 86 ms
101,960 KB
testcase_27 WA -
testcase_28 AC 87 ms
101,976 KB
testcase_29 AC 87 ms
102,016 KB
testcase_30 AC 90 ms
102,016 KB
testcase_31 AC 90 ms
101,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
A = list(map(int,input().split()))
x = 0
for a in A:
    x ^= a
t = sum(A)-x
if x:
    t += 1
ans = (1-pow(pow(-3,mod-2,mod),t,mod))*(mod+1)//2%mod
print(ans)
0