結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 30 ms
51,840 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 34 ms
52,096 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 70 ms
97,664 KB
testcase_17 AC 64 ms
90,624 KB
testcase_18 AC 75 ms
102,752 KB
testcase_19 AC 63 ms
89,984 KB
testcase_20 AC 81 ms
107,848 KB
testcase_21 AC 69 ms
94,848 KB
testcase_22 AC 83 ms
107,648 KB
testcase_23 AC 74 ms
102,272 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 87 ms
102,088 KB
testcase_29 AC 87 ms
101,984 KB
testcase_30 AC 86 ms
102,272 KB
testcase_31 AC 89 ms
102,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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