結果
問題 | No.3070 Collecting Coins Speedrun 2 |
ユーザー |
👑 ![]() |
提出日時 | 2025-03-22 22:54:03 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 68 ms / 2,000 ms |
コード長 | 431 bytes |
コンパイル時間 | 434 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 84,144 KB |
最終ジャッジ日時 | 2025-03-22 22:54:07 |
合計ジャッジ時間 | 3,899 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 32 |
ソースコード
""""""import sysN = int(input())c = list(map(int,input().split()))m = 0z = 0p = 0for i in c:if i > 0:p += 1elif i == 0:z += 1else:m += 1mod = 998244353ans = pow(2,max(0,m-1),mod) * pow(2,max(0,p-1),mod)if m > 0 and p > 0:ans *= 2if z == 1:if m > 0 and p > 0:ans *= 3elif m+p > 0:ans *= 2else:ans *= 1print (ans % mod)