結果

問題 No.1237 EXP Multiple!
ユーザー MineMine
提出日時 2021-01-28 18:58:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 451 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 817,564 KB
最終ジャッジ日時 2024-06-26 03:27:59
合計ジャッジ時間 4,544 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 130 ms
26,136 KB
testcase_02 AC 171 ms
31,808 KB
testcase_03 AC 165 ms
32,632 KB
testcase_04 AC 107 ms
32,684 KB
testcase_05 WA -
testcase_06 AC 78 ms
13,892 KB
testcase_07 WA -
testcase_08 AC 73 ms
13,892 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 74 ms
13,892 KB
testcase_12 AC 71 ms
14,020 KB
testcase_13 AC 112 ms
14,024 KB
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

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(0)
else:
    s = 1
    end = False
    for i in range(n):
        if a[i] == 3:
            s *= 3**6
        elif a[i] == 2:
            a *= 2**2
        if s > moddehanai:
            end = True
            print(moddehanai)
            break
    if not end:
        print(moddehanai % s)
0