結果

問題 No.1343 Dividing Digit
ユーザー ytftytft
提出日時 2021-06-08 17:59:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 6,097 ms
コンパイル使用メモリ 387,568 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-05-05 03:52:27
合計ジャッジ時間 7,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 35 ms
6,272 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 15 ms
5,376 KB
testcase_08 AC 30 ms
5,760 KB
testcase_09 AC 33 ms
6,016 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 26 ms
5,504 KB
testcase_13 AC 25 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 12 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 29 ms
6,016 KB
testcase_18 AC 32 ms
6,272 KB
testcase_19 AC 22 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 30 ms
5,888 KB
testcase_22 AC 31 ms
5,888 KB
testcase_23 AC 38 ms
6,528 KB
testcase_24 AC 26 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <boost/multiprecision/cpp_int.hpp>
typedef boost::multiprecision::cpp_int mp;
int main(){
    int N,K;
    cin>>N>>K;
    vector<mp> A(N);
    mp s=0;
    for(int i=0;i<N;i++){
        cin>>A[i];
        s+=A[i];
    }
    mp ans=0;
    mp temp=1;
    for(int i=N-1;i>=0;i--){
        ans=(ans+temp*A[i])%s;
        temp=(temp*K)%s;
    }
    cout<<ans<<endl;
}
0