結果

問題 No.1092 modular arithmetic
ユーザー kotatsugamekotatsugame
提出日時 2020-06-24 07:31:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 65,376 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 19:55:58
合計ジャッジ時間 3,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 46 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 62 ms
6,944 KB
testcase_04 AC 54 ms
6,940 KB
testcase_05 AC 53 ms
6,940 KB
testcase_06 AC 38 ms
6,940 KB
testcase_07 AC 52 ms
6,944 KB
testcase_08 AC 58 ms
6,940 KB
testcase_09 AC 50 ms
6,940 KB
testcase_10 AC 44 ms
6,944 KB
testcase_11 AC 47 ms
6,940 KB
testcase_12 AC 38 ms
6,940 KB
testcase_13 AC 15 ms
6,940 KB
testcase_14 AC 18 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 18 ms
6,940 KB
testcase_18 AC 63 ms
6,940 KB
testcase_19 AC 39 ms
6,944 KB
testcase_20 AC 65 ms
6,944 KB
testcase_21 AC 50 ms
6,940 KB
testcase_22 AC 62 ms
6,940 KB
testcase_23 AC 98 ms
6,940 KB
testcase_24 AC 31 ms
6,940 KB
testcase_25 AC 76 ms
6,940 KB
testcase_26 AC 96 ms
6,940 KB
testcase_27 AC 16 ms
6,940 KB
testcase_28 AC 76 ms
6,944 KB
testcase_29 AC 116 ms
6,944 KB
testcase_30 AC 77 ms
6,944 KB
testcase_31 AC 11 ms
6,940 KB
testcase_32 AC 68 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
long mod,N,A[1<<17];
string S;
long power(long a,long b){return b?power(a*a%mod,b/2)*(b%2?a:1)%mod:1;}
main()
{
	cin>>mod>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	cin>>S;
	long X=A[0];
	for(int i=0;i<N;i++)
	{
		if(S[i]=='+')X=(X+A[i+1])%mod;
		else if(S[i]=='-')X=(X+mod-A[i+1])%mod;
		else if(S[i]=='*')X=X*A[i+1]%mod;
		else if(S[i]=='/')X=X*power(A[i+1],mod-2)%mod;
	}
	cout<<X<<endl;
}
0