結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 85 ms
26,116 KB
testcase_02 AC 108 ms
31,924 KB
testcase_03 AC 106 ms
32,388 KB
testcase_04 AC 107 ms
32,540 KB
testcase_05 AC 76 ms
14,348 KB
testcase_06 AC 76 ms
14,352 KB
testcase_07 AC 78 ms
14,480 KB
testcase_08 AC 121 ms
14,448 KB
testcase_09 AC 75 ms
14,352 KB
testcase_10 AC 76 ms
14,480 KB
testcase_11 AC 76 ms
14,476 KB
testcase_12 AC 76 ms
14,348 KB
testcase_13 AC 114 ms
14,480 KB
testcase_14 AC 116 ms
14,348 KB
testcase_15 AC 113 ms
14,352 KB
testcase_16 AC 111 ms
14,352 KB
testcase_17 AC 114 ms
14,224 KB
testcase_18 AC 111 ms
14,224 KB
testcase_19 AC 77 ms
14,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 10 ** 9 + 7

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