結果

問題 No.1751 Fortune Nim
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-20 10:34:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-06-11 00:16:07
合計ジャッジ時間 5,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 33 ms
51,584 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 34 ms
51,584 KB
testcase_07 AC 33 ms
51,584 KB
testcase_08 AC 74 ms
94,080 KB
testcase_09 AC 74 ms
93,184 KB
testcase_10 AC 69 ms
87,040 KB
testcase_11 AC 83 ms
102,656 KB
testcase_12 AC 66 ms
85,632 KB
testcase_13 AC 83 ms
102,528 KB
testcase_14 AC 70 ms
90,624 KB
testcase_15 AC 72 ms
92,928 KB
testcase_16 AC 76 ms
97,280 KB
testcase_17 AC 70 ms
90,112 KB
testcase_18 AC 83 ms
102,272 KB
testcase_19 AC 70 ms
88,960 KB
testcase_20 AC 92 ms
107,648 KB
testcase_21 AC 75 ms
94,080 KB
testcase_22 AC 96 ms
101,888 KB
testcase_23 AC 81 ms
101,376 KB
testcase_24 AC 95 ms
101,760 KB
testcase_25 AC 94 ms
101,760 KB
testcase_26 AC 95 ms
101,888 KB
testcase_27 AC 95 ms
102,016 KB
testcase_28 AC 92 ms
102,016 KB
testcase_29 AC 94 ms
101,888 KB
testcase_30 AC 93 ms
101,888 KB
testcase_31 AC 94 ms
102,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
mod = 998244353

inv3 = -1*pow(3,mod-2,mod)%mod

num = 0
for a in A:
    num ^= a

t = sum(A)
if num:
    cand = 10**20
    for a in A:
        cand = min(cand,(a^num)-a)
    t += cand+1
ans = (1-pow(inv3,t,mod))*pow(2,mod-2,mod)%mod
print(ans)
0