結果

問題 No.2828 Remainder Game
ユーザー annyeong1annyeong1
提出日時 2024-08-02 23:18:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,887 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 202,668 KB
実行使用メモリ 25,464 KB
平均クエリ数 54.00
最終ジャッジ日時 2024-08-02 23:19:04
合計ジャッジ時間 4,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void f()':
main.cpp:40:26: warning: iteration 4 invokes undefined behavior [-Waggressive-loop-optimizations]
   40 |     } for(i=0;i<5;i++)y[i]+=(x[i]-1)*(5-z[i]);
      |                       ~~~^
main.cpp:40:16: note: within this loop
   40 |     } for(i=0;i<5;i++)y[i]+=(x[i]-1)*(5-z[i]);
      |               ~^~
main.cpp:41:24: warning: iteration 4 invokes undefined behavior [-Waggressive-loop-optimizations]
   41 |     for(i=0;i<5;i++)y[i]%=x[i];
      |                     ~~~^
main.cpp:41:14: note: within this loop
   41 |     for(i=0;i<5;i++)y[i]%=x[i];
      |             ~^~

ソースコード

diff #

#include<bits/stdc++.h>
//#pragma GCC optimize("O3") // optimization
//#pragma GCC optimize("Ofast") // optimization
//#pragma GCC optimize("unroll-loops") // optimization
using namespace std;
#define i32 signed
#define int long long // CP
#define i64 long long
#define endl '\n'
#define elif else if
#define fi first
#define se second
#define pb push_back
#define p32 pair<i32,i32>
#define p64 pair<i64,i64>
#define f2(i,x) for((i)=0;(i)<(x);(i)++)
#define f2b(i,x) for((i)=(x)-1;(i)>=0;(i)--)
#define f3(i,f,t) for((i)=(f);(i)<(t);(i)++)
#define fall(x) (x).begin(), (x).end()
#define sort1(x) sort(fall(x))
#define rev(x) reverse(fall(x))
#define fast ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define fl fflush(stdout)
#define nl cout<<endl;fflush(stdout)
i64 gcd(i64 a, i64 b){if(a<b){a=a^b;b=a^b;a=a^b;} return b==0?a:gcd(b,a%b);}
i64 lcm(i64 a, i64 b){return a/gcd(a,b)*b;}
i64 expm(i64 a, i64 b, i64 m){i64 r=1;while(b){if(b&1)r=r*a%m;a=a*a%m;b>>=1;}return r%m;}
i64 expm(i64 a, i64 b){i64 r=1,m=1e9+7;while(b){if(b&1)r=r*a%m;a=a*a%m;b>>=1;}return r%m;}
i64 minv(i64 a, i64 m){return expm(a,m-2,m);}
i64 ncrm(i64 n, i64 r, i64 m){i64 i,j,k; i64 out=1; f3(i,1,n+1){out*=i;out%=m;}f3(i,1,r+1){out*=minv(i,m);out%=m;}f3(i,1,n-r+1){out*=minv(i,m);out%=m;}return out%m;}
int n,m,k,a[300010],b[300010]; char c[300010];
void f(){
    int i,j,l;
    cin>>n;
    int x[]={4,3,5,7,13};
    int y[4]={0}; int z[4]={0};
    for(i=0;i<5;i++)for(j=0;j<x[i]-1;j++){
        cout<<x[i]<<' '<<1<<endl<<j<<endl; fl;
        cin>>l; y[i]+=l*j; z[i]+=l;
    } for(i=0;i<5;i++)y[i]+=(x[i]-1)*(5-z[i]);
    for(i=0;i<5;i++)y[i]%=x[i];
    for(i=1;i<5001;i++){
        for(j=0;j<5;j++)if(i%x[j]!=y[j])break;
        if(j==5){
            cout<<"0 1\n"<<i<<endl; fl;
            return;
        }
    }
}
i32 main(){
//    fast;
//    int tc; cin>>tc;
//    while(tc--)f();
    f();
    return 0;
}
0