結果

問題 No.1237 EXP Multiple!
ユーザー cmycmy
提出日時 2022-08-18 03:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-10-05 11:32:13
合計ジャッジ時間 3,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 90 ms
98,560 KB
testcase_02 AC 102 ms
102,740 KB
testcase_03 AC 109 ms
102,948 KB
testcase_04 AC 106 ms
103,224 KB
testcase_05 AC 81 ms
103,680 KB
testcase_06 AC 82 ms
103,552 KB
testcase_07 AC 85 ms
103,296 KB
testcase_08 AC 81 ms
105,088 KB
testcase_09 AC 80 ms
103,936 KB
testcase_10 AC 83 ms
103,552 KB
testcase_11 AC 83 ms
103,552 KB
testcase_12 AC 83 ms
103,552 KB
testcase_13 AC 86 ms
104,576 KB
testcase_14 AC 86 ms
104,448 KB
testcase_15 AC 85 ms
104,704 KB
testcase_16 AC 85 ms
104,448 KB
testcase_17 AC 87 ms
104,752 KB
testcase_18 AC 87 ms
104,456 KB
testcase_19 AC 79 ms
104,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MX = 10**9+7

n = int(input())
*a, = map(int, input().split())
if min(a) == 0:
    print(-1)
elif max(a) > 3:
    print(MX)
else:
    v = [1, 4, 729]
    ans = 1
    for ai in a:
        ans *= v[ai-1]
        if ans > MX:
            print(MX)
            break
    else:
        print(MX % ans)
0