結果

問題 No.1751 Fortune Nim
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-11-20 10:34:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,124 KB
最終ジャッジ日時 2025-01-03 02:26:57
合計ジャッジ時間 5,726 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
51,816 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 80 ms
94,208 KB
testcase_09 AC 78 ms
93,696 KB
testcase_10 AC 69 ms
87,220 KB
testcase_11 AC 82 ms
102,496 KB
testcase_12 AC 71 ms
86,144 KB
testcase_13 AC 85 ms
102,784 KB
testcase_14 AC 73 ms
91,136 KB
testcase_15 AC 75 ms
93,312 KB
testcase_16 AC 76 ms
97,408 KB
testcase_17 AC 72 ms
90,496 KB
testcase_18 AC 84 ms
102,656 KB
testcase_19 AC 71 ms
89,600 KB
testcase_20 AC 91 ms
108,124 KB
testcase_21 AC 75 ms
94,080 KB
testcase_22 AC 89 ms
107,300 KB
testcase_23 AC 81 ms
101,888 KB
testcase_24 AC 99 ms
101,816 KB
testcase_25 AC 98 ms
101,908 KB
testcase_26 AC 100 ms
102,144 KB
testcase_27 AC 98 ms
101,972 KB
testcase_28 AC 92 ms
102,120 KB
testcase_29 AC 96 ms
102,016 KB
testcase_30 AC 94 ms
101,844 KB
testcase_31 AC 98 ms
102,016 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