結果

問題 No.1237 EXP Multiple!
ユーザー harurunharurun
提出日時 2020-09-25 23:41:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,872 KB
最終ジャッジ日時 2024-06-28 08:40:34
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 86 ms
26,856 KB
testcase_02 AC 106 ms
32,780 KB
testcase_03 AC 103 ms
32,872 KB
testcase_04 AC 108 ms
32,552 KB
testcase_05 AC 76 ms
14,724 KB
testcase_06 AC 77 ms
14,728 KB
testcase_07 AC 78 ms
14,852 KB
testcase_08 AC 133 ms
14,856 KB
testcase_09 AC 77 ms
14,596 KB
testcase_10 AC 77 ms
14,728 KB
testcase_11 AC 76 ms
14,732 KB
testcase_12 AC 73 ms
14,724 KB
testcase_13 AC 131 ms
14,600 KB
testcase_14 AC 130 ms
14,600 KB
testcase_15 AC 135 ms
14,724 KB
testcase_16 AC 129 ms
14,740 KB
testcase_17 AC 130 ms
14,600 KB
testcase_18 AC 131 ms
14,856 KB
testcase_19 AC 77 ms
14,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
A=list(map(int,input().split()))
d=[1,1,2,6]
if max(A)>3:
  print(10**9+7)
elif min(A)==0:
  print(-1)
else:
  ans=1
  for i in A:
    ans*=pow(i,d[i])
    if ans>1000000007:
      print(10**9+7)
      break
  else:
    print((10**9+7)%ans)
#そういうことか take3
0