結果

問題 No.1237 EXP Multiple!
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-15 22:51:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,224 KB
最終ジャッジ日時 2024-09-26 04:54:19
合計ジャッジ時間 3,862 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
55,296 KB
testcase_01 AC 96 ms
95,744 KB
testcase_02 AC 117 ms
101,372 KB
testcase_03 AC 116 ms
101,276 KB
testcase_04 AC 118 ms
102,224 KB
testcase_05 AC 92 ms
98,944 KB
testcase_06 AC 92 ms
98,816 KB
testcase_07 AC 92 ms
98,816 KB
testcase_08 AC 95 ms
100,096 KB
testcase_09 AC 91 ms
98,816 KB
testcase_10 AC 91 ms
98,688 KB
testcase_11 AC 92 ms
98,816 KB
testcase_12 AC 94 ms
100,224 KB
testcase_13 AC 93 ms
99,584 KB
testcase_14 AC 94 ms
99,712 KB
testcase_15 AC 94 ms
99,712 KB
testcase_16 AC 94 ms
99,712 KB
testcase_17 AC 95 ms
99,584 KB
testcase_18 AC 95 ms
99,712 KB
testcase_19 AC 93 ms
98,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math

N = int(input())
A = list(map(int,input().split()))
mod = 10**9 + 7



tmp = 1
X = [0,1,4,729]
if 0 in A:
    print(-1)
    exit()
for a in A:
    if a>=4:
        print(mod)
        exit()
    else:
        tmp *= X[a]
        if tmp > mod:
            print(mod)
            exit()
print(mod%tmp)
    
    
0