結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 77 ms
26,980 KB
testcase_02 AC 95 ms
32,652 KB
testcase_03 AC 99 ms
32,836 KB
testcase_04 AC 106 ms
32,676 KB
testcase_05 AC 69 ms
14,728 KB
testcase_06 AC 71 ms
14,728 KB
testcase_07 AC 67 ms
14,724 KB
testcase_08 AC 116 ms
14,732 KB
testcase_09 AC 68 ms
14,724 KB
testcase_10 AC 67 ms
14,852 KB
testcase_11 AC 69 ms
14,856 KB
testcase_12 AC 101 ms
14,728 KB
testcase_13 AC 106 ms
14,724 KB
testcase_14 AC 109 ms
14,728 KB
testcase_15 AC 108 ms
14,728 KB
testcase_16 AC 114 ms
14,732 KB
testcase_17 AC 107 ms
14,724 KB
testcase_18 AC 110 ms
14,720 KB
testcase_19 AC 68 ms
14,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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