結果

問題 No.1765 While Shining
ユーザー cozy_saunacozy_sauna
提出日時 2022-03-10 17:35:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 100,092 KB
最終ジャッジ日時 2024-09-14 18:20:19
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,756 KB
testcase_01 AC 38 ms
52,152 KB
testcase_02 AC 39 ms
53,364 KB
testcase_03 AC 38 ms
52,264 KB
testcase_04 AC 39 ms
53,696 KB
testcase_05 AC 39 ms
52,752 KB
testcase_06 AC 39 ms
52,284 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 39 ms
52,632 KB
testcase_09 AC 65 ms
85,128 KB
testcase_10 AC 77 ms
98,940 KB
testcase_11 AC 71 ms
92,292 KB
testcase_12 AC 73 ms
95,244 KB
testcase_13 AC 71 ms
91,508 KB
testcase_14 AC 78 ms
98,964 KB
testcase_15 AC 79 ms
99,904 KB
testcase_16 AC 78 ms
99,740 KB
testcase_17 AC 77 ms
98,460 KB
testcase_18 AC 77 ms
98,576 KB
testcase_19 AC 77 ms
98,684 KB
testcase_20 AC 77 ms
98,624 KB
testcase_21 AC 77 ms
100,092 KB
testcase_22 AC 78 ms
99,136 KB
testcase_23 AC 77 ms
99,476 KB
testcase_24 AC 78 ms
98,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
M = [0] * 2
m, n = 0, 0
ans = 0
i = N - 1
for a in A[::-1]:
    ans += m * a * (i != N - 1)
    m, n = n * (1 - a) + 1, m * a + 1
    # if a: m = 1
    # else: n = 1
    i -= 1
    
print(ans)
0