結果

問題 No.3070 Collecting Coins Speedrun 2
ユーザー nikoro256
提出日時 2025-03-21 22:15:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 305 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,468 KB
最終ジャッジ日時 2025-03-21 22:15:33
合計ジャッジ時間 3,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 11 WA * 7 RE * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
C=list(map(int,input().split()))
if N==1:
    print(1)
    exit()
ans=1
if min(C)<0<max(C):
    ans*=2
zero_count =0
if 0 in C:
    assert 0==1
    if min(C)<0<max(C):
        zero_count+=1
        ans*=3
    else:
        ans*=2
p=998244353
ans*=pow(2,max(0,N-2-zero_count),p)
print(ans%p)
0