結果

問題 No.1092 modular arithmetic
ユーザー motmot
提出日時 2020-07-02 18:49:31
言語 C++11
(gcc 11.4.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 47 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 119 ms
5,376 KB
testcase_04 AC 110 ms
5,376 KB
testcase_05 AC 108 ms
5,376 KB
testcase_06 AC 87 ms
5,376 KB
testcase_07 AC 81 ms
5,376 KB
testcase_08 AC 103 ms
5,376 KB
testcase_09 AC 111 ms
5,376 KB
testcase_10 AC 82 ms
5,376 KB
testcase_11 AC 106 ms
5,376 KB
testcase_12 AC 98 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 148 ms
5,376 KB
testcase_19 AC 89 ms
5,376 KB
testcase_20 AC 152 ms
5,376 KB
testcase_21 AC 117 ms
5,376 KB
testcase_22 AC 143 ms
5,376 KB
testcase_23 AC 354 ms
5,376 KB
testcase_24 AC 67 ms
5,376 KB
testcase_25 AC 249 ms
5,376 KB
testcase_26 AC 202 ms
5,376 KB
testcase_27 AC 42 ms
5,376 KB
testcase_28 AC 250 ms
5,376 KB
testcase_29 AC 292 ms
5,376 KB
testcase_30 AC 195 ms
5,376 KB
testcase_31 AC 32 ms
5,376 KB
testcase_32 AC 236 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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