結果

問題 No.1751 Fortune Nim
ユーザー Eki1009Eki1009
提出日時 2021-11-19 23:13:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 107,692 KB
最終ジャッジ日時 2024-06-10 10:40:49
合計ジャッジ時間 4,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,732 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
51,456 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 39 ms
53,540 KB
testcase_06 AC 39 ms
52,060 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 79 ms
94,976 KB
testcase_09 AC 76 ms
93,824 KB
testcase_10 AC 72 ms
87,680 KB
testcase_11 AC 91 ms
104,064 KB
testcase_12 AC 70 ms
87,296 KB
testcase_13 AC 92 ms
103,936 KB
testcase_14 AC 80 ms
91,392 KB
testcase_15 AC 81 ms
93,440 KB
testcase_16 AC 80 ms
97,536 KB
testcase_17 AC 77 ms
90,624 KB
testcase_18 AC 89 ms
102,912 KB
testcase_19 AC 76 ms
89,856 KB
testcase_20 AC 92 ms
107,692 KB
testcase_21 AC 76 ms
94,464 KB
testcase_22 AC 92 ms
107,456 KB
testcase_23 AC 81 ms
102,016 KB
testcase_24 AC 100 ms
101,760 KB
testcase_25 AC 101 ms
102,144 KB
testcase_26 AC 99 ms
102,264 KB
testcase_27 AC 104 ms
101,760 KB
testcase_28 AC 99 ms
102,272 KB
testcase_29 AC 99 ms
102,144 KB
testcase_30 AC 99 ms
102,144 KB
testcase_31 AC 97 ms
101,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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