結果
問題 | No.1097 Remainder Operation |
ユーザー | lgswdn |
提出日時 | 2024-08-12 10:25:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 1,786 bytes |
コンパイル時間 | 1,970 ms |
コンパイル使用メモリ | 202,196 KB |
実行使用メモリ | 10,660 KB |
最終ジャッジ日時 | 2024-08-12 10:26:05 |
合計ジャッジ時間 | 5,565 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 3 ms
9,804 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
9,676 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
7,632 KB |
testcase_07 | AC | 4 ms
9,676 KB |
testcase_08 | AC | 4 ms
7,884 KB |
testcase_09 | AC | 4 ms
7,840 KB |
testcase_10 | AC | 5 ms
9,672 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | AC | 24 ms
7,760 KB |
testcase_13 | AC | 23 ms
6,944 KB |
testcase_14 | AC | 22 ms
7,888 KB |
testcase_15 | AC | 23 ms
8,264 KB |
testcase_16 | AC | 23 ms
6,940 KB |
testcase_17 | AC | 23 ms
7,628 KB |
testcase_18 | AC | 21 ms
7,772 KB |
testcase_19 | AC | 23 ms
9,032 KB |
testcase_20 | AC | 23 ms
10,624 KB |
testcase_21 | AC | 23 ms
9,164 KB |
testcase_22 | AC | 23 ms
10,660 KB |
ソースコード
//Shirasu Azusa 2024.08 #include <bits/stdc++.h> #define fi first #define se second #define eb emplace_back #define mp make_pair using namespace std; typedef long double ld; typedef long long ll; typedef unsigned long long ull; template<typename T,typename U> T ceil(T x, U y) {return (x>0?(x+y-1)/y:x/y);} template<typename T,typename U> T floor(T x, U y) {return (x>0?x/y:(x-y+1)/y);} template<class T,class S> bool chmax(T &a,const S b) {return (a<b?a=b,1:0);} template<class T,class S> bool chmin(T &a,const S b) {return (a>b?a=b,1:0);} int popcnt(int x) {return __builtin_popcount(x);} int popcnt(ll x) {return __builtin_popcountll(x);} int topbit(int x) {return (x==0?-1:31-__builtin_clz(x));} int topbit(ll x) {return (x==0?-1:63-__builtin_clzll(x));} int lowbit(int x) {return (x==0?-1:__builtin_ctz(x));} int lowbit(ll x) {return (x==0?-1:__builtin_ctzll(x));} #define int long long #define rep(i,a,b) for(int i=(a);i<=(b);i++) #define per(i,a,b) for(int i=(a);i>=(b);i--) typedef pair<int,int> pii; typedef vector<int> vi; typedef vector<pii> vp; typedef tuple<int,int,int> tiii; int read() { int x=0,w=1; char c=getchar(); while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();} while(isdigit(c)) {x=x*10+(c-'0'); c=getchar();} return x*w; } const int N=2e5+5; int n,a[N],q,ans[N],vst[N],b[N],m,t,l,sum,s[N]; signed main() { n=read(); rep(i,0,n-1) a[i]=read(); m=1; b[1]=0; vst[0]=1; for(int x=0;;) { x=(x+a[x])%n; if(vst[x]) {t=x; break;} else vst[x]=1, b[++m]=x; } rep(i,1,m) if(b[i]==t) {l=i; break;} rep(i,1,m) s[i]=s[i-1]+a[b[i]]; rep(i,l,m) sum+=a[b[i]]; int pp=(m-l+1); q=read(); rep(i,1,q) { int k=read(); if(k<l) printf("%lld\n",s[k]); else printf("%lld\n",s[(k-l+1)%pp+l-1]+sum*((k-l+1)/pp)); } return 0; }