結果

問題 No.1237 EXP Multiple!
ユーザー 👑 rin204rin204
提出日時 2020-09-29 12:06:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,740 KB
最終ジャッジ日時 2024-07-03 17:36:34
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 78 ms
26,984 KB
testcase_02 AC 97 ms
32,652 KB
testcase_03 AC 95 ms
32,740 KB
testcase_04 AC 104 ms
32,680 KB
testcase_05 AC 67 ms
14,672 KB
testcase_06 AC 67 ms
14,600 KB
testcase_07 AC 68 ms
14,728 KB
testcase_08 AC 117 ms
14,728 KB
testcase_09 AC 65 ms
14,728 KB
testcase_10 AC 67 ms
14,724 KB
testcase_11 AC 67 ms
14,724 KB
testcase_12 AC 101 ms
14,724 KB
testcase_13 AC 108 ms
14,724 KB
testcase_14 AC 111 ms
14,856 KB
testcase_15 AC 110 ms
14,676 KB
testcase_16 AC 109 ms
14,728 KB
testcase_17 AC 111 ms
14,728 KB
testcase_18 AC 114 ms
14,724 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
alst = list(map(int, input().split()))
f = [1, 2 ** 2, 3 ** 6]
ans = 1
for a in alst:
    if a >= 4:
        print(10 ** 9 + 7)
        break
    elif a == 0:
        print(-1)
        break
    ans *= f[a - 1]
    if ans > 10 ** 9 + 7:
        print(10 ** 9 + 7)
        break
else:
    print((10 ** 9 + 7) % ans)
0