結果

問題 No.1237 EXP Multiple!
ユーザー ShirotsumeShirotsume
提出日時 2023-02-17 19:57:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 100,424 KB
最終ジャッジ日時 2024-07-19 11:20:30
合計ジャッジ時間 2,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,376 KB
testcase_01 AC 82 ms
93,824 KB
testcase_02 AC 105 ms
99,072 KB
testcase_03 AC 105 ms
99,328 KB
testcase_04 AC 104 ms
100,424 KB
testcase_05 AC 81 ms
98,432 KB
testcase_06 AC 79 ms
97,280 KB
testcase_07 AC 82 ms
98,176 KB
testcase_08 AC 85 ms
98,560 KB
testcase_09 AC 85 ms
98,176 KB
testcase_10 AC 82 ms
98,560 KB
testcase_11 AC 79 ms
97,280 KB
testcase_12 AC 83 ms
98,432 KB
testcase_13 AC 84 ms
98,048 KB
testcase_14 AC 86 ms
98,304 KB
testcase_15 AC 85 ms
98,048 KB
testcase_16 AC 84 ms
98,432 KB
testcase_17 AC 88 ms
98,560 KB
testcase_18 AC 85 ms
98,048 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())

n = ii()

a = li()
ans = 1
p = [0, 1, 4, 729]
for i in range(n):
    if a[i] >= 4:
        print(10 ** 9 + 7)
        exit()
    else:
        ans *= p[a[i]]
        if ans > 10 ** 9 + 7:
            print(10 ** 9 + 7)
            exit()

if ans == 0:
    print(-1)
else:
    print((10 ** 9 + 7) % ans)
0