結果

問題 No.1237 EXP Multiple!
ユーザー toyuzukotoyuzuko
提出日時 2020-09-27 00:12:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,740 KB
最終ジャッジ日時 2024-06-30 01:20:53
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 74 ms
26,252 KB
testcase_02 AC 94 ms
31,804 KB
testcase_03 AC 98 ms
32,740 KB
testcase_04 AC 96 ms
32,552 KB
testcase_05 AC 62 ms
14,736 KB
testcase_06 AC 67 ms
14,480 KB
testcase_07 AC 62 ms
14,660 KB
testcase_08 AC 115 ms
14,732 KB
testcase_09 AC 62 ms
14,608 KB
testcase_10 AC 62 ms
14,604 KB
testcase_11 AC 67 ms
14,736 KB
testcase_12 AC 65 ms
14,476 KB
testcase_13 AC 103 ms
14,736 KB
testcase_14 AC 102 ms
14,736 KB
testcase_15 AC 102 ms
14,732 KB
testcase_16 AC 102 ms
14,612 KB
testcase_17 AC 102 ms
14,732 KB
testcase_18 AC 104 ms
14,732 KB
testcase_19 AC 62 ms
14,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

if min(A) == 0:
    print(-1)
elif max(A) >= 4:
    print(1000000007)
else:
    res = 1
    p = [1, 4, 729]
    for i in range(N):
        res *= p[A[i] - 1]
        if res > 1000000007:
            print(1000000007)
            break
    else:
        print(1000000007 % res)
0