結果

問題 No.1751 Fortune Nim
ユーザー tamatotamato
提出日時 2021-11-19 22:04:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 106,064 KB
最終ジャッジ日時 2024-06-10 09:01:52
合計ジャッジ時間 3,605 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 32 ms
52,352 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 75 ms
95,360 KB
testcase_17 AC 62 ms
88,344 KB
testcase_18 AC 78 ms
100,224 KB
testcase_19 AC 63 ms
87,296 KB
testcase_20 AC 89 ms
106,064 KB
testcase_21 AC 67 ms
91,904 KB
testcase_22 AC 94 ms
99,840 KB
testcase_23 AC 73 ms
99,388 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 93 ms
100,480 KB
testcase_29 AC 96 ms
100,352 KB
testcase_30 AC 94 ms
100,256 KB
testcase_31 AC 93 ms
100,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))

    if N == 1:
        print(665496236)
    else:
        S = sum(A)
        if S & 1:
            lower = pow(3, S, mod)
            upper = ((lower + 1) * pow(2, mod-2, mod))%mod
            print((upper * pow(lower, mod-2, mod))%mod)
        else:
            lower = pow(3, S, mod)
            upper = ((lower - 1) * pow(2, mod - 2, mod)) % mod
            print((upper * pow(lower, mod - 2, mod)) % mod)


if __name__ == '__main__':
    main()
0