結果

問題 No.1237 EXP Multiple!
ユーザー MineMine
提出日時 2021-01-28 19:02:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,136 KB
最終ジャッジ日時 2024-06-26 03:33:33
合計ジャッジ時間 3,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 112 ms
26,136 KB
testcase_02 AC 151 ms
31,812 KB
testcase_03 AC 156 ms
32,636 KB
testcase_04 AC 104 ms
33,136 KB
testcase_05 AC 70 ms
14,616 KB
testcase_06 AC 70 ms
14,744 KB
testcase_07 AC 75 ms
14,616 KB
testcase_08 AC 69 ms
14,740 KB
testcase_09 AC 69 ms
14,612 KB
testcase_10 AC 73 ms
14,616 KB
testcase_11 AC 69 ms
14,612 KB
testcase_12 AC 69 ms
14,620 KB
testcase_13 AC 109 ms
14,740 KB
testcase_14 AC 115 ms
14,616 KB
testcase_15 AC 114 ms
14,616 KB
testcase_16 AC 111 ms
14,688 KB
testcase_17 AC 116 ms
14,740 KB
testcase_18 AC 115 ms
14,740 KB
testcase_19 AC 69 ms
14,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
moddehanai = 10**9 + 7
a.sort(reverse=True)
if a[0] >= 4:
    print(moddehanai)
elif a[-1] == 0:
    print(-1)
else:
    s = 1
    end = False
    for i in range(n):
        if a[i] == 3:
            s *= 3**6
        elif a[i] == 2:
            s *= 2**2
        if s > moddehanai:
            end = True
            print(moddehanai)
            break
    if not end:
        print(moddehanai % s)
0