結果

問題 No.1237 EXP Multiple!
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-26 19:28:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-06-29 14:06:56
合計ジャッジ時間 2,951 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 77 ms
98,304 KB
testcase_02 AC 98 ms
103,000 KB
testcase_03 AC 98 ms
103,212 KB
testcase_04 AC 101 ms
103,476 KB
testcase_05 AC 83 ms
103,424 KB
testcase_06 AC 83 ms
103,808 KB
testcase_07 AC 80 ms
103,296 KB
testcase_08 AC 85 ms
104,704 KB
testcase_09 AC 84 ms
103,424 KB
testcase_10 AC 83 ms
103,424 KB
testcase_11 AC 82 ms
103,296 KB
testcase_12 AC 85 ms
105,088 KB
testcase_13 AC 84 ms
104,832 KB
testcase_14 AC 88 ms
104,832 KB
testcase_15 AC 89 ms
104,832 KB
testcase_16 AC 87 ms
104,960 KB
testcase_17 AC 89 ms
104,448 KB
testcase_18 AC 97 ms
104,704 KB
testcase_19 AC 93 ms
103,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if min(A)==0:
    print(-1)
    exit()

pattern=[0,1,2**2,3**6]
ans=1
for a in A:
    if a>3:
        print(mod)
        exit()
    else:
        ans*=pattern[a]
    if ans>mod:
        print(mod)
        exit()
    
print(mod%ans)
0