結果

問題 No.1092 modular arithmetic
ユーザー mot
提出日時 2020-07-02 18:49:31
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 1,109 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 84,492 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 01:41:27
合計ジャッジ時間 6,639 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<vector>
#include<list>
#include<algorithm>
#include<map>
#include<set>
#include<queue>
#include<stack>
using namespace std;
typedef long long ll;
#define fi first
#define se second
#define mp make_pair
#define rep(i, n) for(int i=0;i<n;++i)
#define rrep(i, n) for(int i=n;i>=0;--i)
const int inf=1e9+7;
const ll mod=1e9+7;
const ll big=1e18;
const double PI=2*asin(1);

int main() {
  ll P, N;
  cin>>P>>N;
  ll A[N];
  for(int i=0;i<N;++i) cin>>A[i];
  string S;
  cin>>S;
  ll ans = A[0]%P;
  ll h;
  ll two;
  ll tmp;
  for(int i=0;i<S.size();++i){
    if(S[i]=='+'){
      ans += A[i+1];
      ans %= P;
    }
    if(S[i]=='-'){
      ans -= A[i+1];
      ans = (ans + P)%P;
    }
    if(S[i]=='*'){
      ans *= A[i+1];
      ans %= P;
    }
    if(S[i]=='/'){
      h = P-2;
      while(h>0){
        two = 1;
        tmp = A[i+1];
        while(2*two<=h){
          two *= 2;
          tmp *= tmp;
          tmp %= P;
        }
        h -= two;
        ans *= tmp;
        ans %= P;
      }
    }
  }
  cout<<ans<<endl;
}
0