結果
問題 | No.1751 Fortune Nim |
ユーザー | Eki1009 |
提出日時 | 2021-11-19 23:13:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 94 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 108,064 KB |
最終ジャッジ日時 | 2025-01-01 21:54:00 |
合計ジャッジ時間 | 4,039 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
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)