結果

問題 No.1334 Multiply or Add
ユーザー tobusakanatobusakana
提出日時 2023-09-07 20:44:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 107,984 KB
最終ジャッジ日時 2024-06-25 14:26:17
合計ジャッジ時間 9,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 108 ms
107,648 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 99 ms
107,532 KB
testcase_07 AC 100 ms
107,640 KB
testcase_08 WA -
testcase_09 AC 99 ms
107,632 KB
testcase_10 AC 100 ms
107,864 KB
testcase_11 AC 100 ms
107,852 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 100 ms
107,664 KB
testcase_17 AC 97 ms
107,560 KB
testcase_18 AC 97 ms
107,496 KB
testcase_19 AC 96 ms
107,728 KB
testcase_20 AC 95 ms
107,684 KB
testcase_21 AC 97 ms
107,436 KB
testcase_22 WA -
testcase_23 AC 100 ms
107,748 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 96 ms
107,808 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 99 ms
107,628 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 108 ms
102,012 KB
testcase_51 AC 102 ms
102,056 KB
testcase_52 AC 102 ms
102,252 KB
testcase_53 AC 102 ms
102,172 KB
testcase_54 AC 103 ms
102,140 KB
testcase_55 AC 104 ms
102,356 KB
testcase_56 AC 41 ms
54,644 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 42 ms
53,888 KB
testcase_60 AC 42 ms
53,504 KB
testcase_61 AC 42 ms
53,760 KB
testcase_62 AC 42 ms
54,016 KB
testcase_63 AC 41 ms
53,616 KB
testcase_64 AC 41 ms
53,504 KB
testcase_65 AC 43 ms
53,760 KB
testcase_66 AC 90 ms
101,120 KB
testcase_67 AC 72 ms
90,520 KB
testcase_68 AC 46 ms
62,336 KB
testcase_69 AC 95 ms
104,180 KB
testcase_70 AC 93 ms
103,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# はじにある1は足したほうがよい
N = int(input())
A = list(map(int,input().split()))

from collections import deque
q = deque(A)
DIV = 10 ** 9 + 7

ans = 0
while q:
    found = False
    if q[0] == 1:
        ans += 1
        q.popleft()
        found = True
    elif q[-1] == 1:
        ans += 1
        q.pop()
        found = True
    if not found:
        break
    
def f(X):
    res = 1
    for x in X:
        res *= x
        res %= DIV
    return res
    
print((ans + f(q)) % DIV)
0