結果

問題 No.1237 EXP Multiple!
ユーザー tonyu0tonyu0
提出日時 2020-09-25 23:36:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,416 KB
最終ジャッジ日時 2024-06-28 08:17:12
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 85 ms
26,120 KB
testcase_02 AC 104 ms
31,924 KB
testcase_03 AC 109 ms
32,364 KB
testcase_04 AC 108 ms
32,416 KB
testcase_05 AC 77 ms
14,480 KB
testcase_06 AC 77 ms
14,352 KB
testcase_07 AC 78 ms
14,484 KB
testcase_08 AC 116 ms
14,348 KB
testcase_09 AC 78 ms
14,352 KB
testcase_10 AC 77 ms
14,480 KB
testcase_11 AC 77 ms
14,604 KB
testcase_12 AC 77 ms
14,472 KB
testcase_13 AC 111 ms
14,352 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 112 ms
14,476 KB
testcase_17 AC 116 ms
14,352 KB
testcase_18 AC 119 ms
14,604 KB
testcase_19 AC 77 ms
14,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, *a = map(int, open(0).read().split())
mx = max(a)
mn = min(a)

mod = 10 ** 9 + 7

if mx > 3:
    print(mod)
elif mn == 0:
    print(-1)
else:
    b = [0, 1, 16, 729]
    ans = 1
    for c in a:
        ans *= b[c]
        if ans > mod:
            print(mod)
            exit()
    print(mod % ans)
0