結果

問題 No.1097 Remainder Operation
ユーザー t98slidert98slider
提出日時 2021-07-27 02:46:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 1,401 ms
コンパイル使用メモリ 166,964 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-07-22 18:42:56
合計ジャッジ時間 7,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 29 ms
6,784 KB
testcase_08 AC 29 ms
6,656 KB
testcase_09 AC 31 ms
6,784 KB
testcase_10 AC 30 ms
6,912 KB
testcase_11 AC 29 ms
6,784 KB
testcase_12 AC 325 ms
34,560 KB
testcase_13 AC 330 ms
34,732 KB
testcase_14 AC 331 ms
34,688 KB
testcase_15 AC 336 ms
34,688 KB
testcase_16 AC 311 ms
34,688 KB
testcase_17 AC 277 ms
34,688 KB
testcase_18 AC 271 ms
34,816 KB
testcase_19 AC 292 ms
34,688 KB
testcase_20 AC 300 ms
34,580 KB
testcase_21 AC 356 ms
34,688 KB
testcase_22 AC 349 ms
34,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

long dp[40][100000],k,ans;

int main(){
    int n,t,i;
    cin>>n;
    for(int i=0;i<n;i++)cin>>dp[0][i];
    for(int i=1;i<40;i++){
        for(int j=0;j<n;j++){
            dp[i][j]=dp[i-1][j]+dp[i-1][(dp[i-1][j]+j)%n];
        }
    }
    cin>>t;
    while(t--){
        cin>>k;
        ans=0;
        for(int i=0;i<40;i++){
            if(k>>i&1)ans+=dp[i][ans%n];
        }
        cout<<ans<<endl;
    }
}
0