結果

問題 No.1751 Fortune Nim
ユーザー hir355hir355
提出日時 2021-11-19 22:53:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,696 KB
最終ジャッジ日時 2024-06-10 10:14:17
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 158 ms
26,156 KB
testcase_09 AC 154 ms
25,484 KB
testcase_10 AC 139 ms
23,124 KB
testcase_11 AC 185 ms
29,796 KB
testcase_12 AC 129 ms
22,328 KB
testcase_13 AC 188 ms
29,648 KB
testcase_14 AC 152 ms
24,936 KB
testcase_15 AC 149 ms
25,176 KB
testcase_16 AC 108 ms
27,728 KB
testcase_17 AC 96 ms
24,944 KB
testcase_18 AC 118 ms
30,192 KB
testcase_19 AC 91 ms
24,288 KB
testcase_20 AC 126 ms
31,736 KB
testcase_21 AC 104 ms
26,732 KB
testcase_22 AC 126 ms
32,380 KB
testcase_23 AC 114 ms
29,484 KB
testcase_24 AC 217 ms
32,660 KB
testcase_25 AC 216 ms
32,664 KB
testcase_26 AC 215 ms
32,660 KB
testcase_27 AC 221 ms
32,672 KB
testcase_28 AC 129 ms
32,664 KB
testcase_29 AC 132 ms
32,664 KB
testcase_30 AC 132 ms
32,660 KB
testcase_31 AC 132 ms
32,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
a = list(map(int, input().split()))
s = sum(a)
g = 0
for x in a:
    g ^= x
if g == 0:
    p = pow(3, s, MOD)
    print((p - 1) * pow(2, -1, MOD) * pow(p, -1, MOD) % MOD)
else:
    ans = 10 ** 18
    for x in a:
        if g ^ x <= x:
            ans = min(ans, s - (x - (g ^ x)) + 1)
    p = pow(3, ans, MOD)
    print((p + 1) * pow(2, -1, MOD) * pow(p, -1, MOD) % MOD)
0