結果

問題 No.1682 Unfair Game
ユーザー mymelochanmymelochan
提出日時 2021-09-17 23:41:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 53,440 KB
最終ジャッジ日時 2024-06-29 22:27:39
合計ジャッジ時間 1,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,000 KB
testcase_01 AC 39 ms
51,900 KB
testcase_02 AC 37 ms
52,268 KB
testcase_03 AC 36 ms
52,880 KB
testcase_04 AC 37 ms
51,748 KB
testcase_05 AC 37 ms
52,120 KB
testcase_06 AC 38 ms
52,692 KB
testcase_07 AC 38 ms
52,628 KB
testcase_08 AC 38 ms
51,864 KB
testcase_09 AC 38 ms
53,384 KB
testcase_10 AC 38 ms
52,372 KB
testcase_11 AC 38 ms
51,940 KB
testcase_12 AC 37 ms
51,876 KB
testcase_13 AC 39 ms
53,412 KB
testcase_14 AC 38 ms
51,940 KB
testcase_15 AC 37 ms
53,440 KB
testcase_16 AC 38 ms
52,416 KB
testcase_17 AC 38 ms
52,056 KB
testcase_18 AC 38 ms
52,696 KB
testcase_19 AC 37 ms
53,408 KB
testcase_20 AC 37 ms
52,496 KB
testcase_21 AC 37 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int,input().split()))
P = [p for p in P if p != 50]
MOD = 10**9+7
dp = [1,0]
for p in P:
    ndp = [0,0]
    if p > 50:
        ndp = [dp[0]+dp[1],dp[1]+dp[0]]
    else:
        ndp = [dp[0]*2,dp[1]*2] 
    dp = [ndp[0]%MOD,ndp[1]%MOD] 
print(dp[1])
0