結果

問題 No.1569 Nixoracci's Number
ユーザー Live Youtube Channel Promotion FreeLive Youtube Channel Promotion Free
提出日時 2022-01-24 20:40:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 202,996 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 17:14:34
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define endl "\n"
#define ll long long 
#define mod 1000000007
#define db1(x)  cerr <<#x<<"="<<x<<'\n'
#define db2(x,y)  cerr <<#x<<"="<<x<<" , "<<#y<<"="<<y<<'\n'
#define db3(x,y,z)  cerr <<#x<<"="<<x<<" , "<<#y<<"="<<y<<" , "<<#z<<"="<<z<<'\n'
int main()
{
 ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  cout.tie(NULL);


       ll n,k,v,ans=0;
    cin>>n>>k;
    vector<ll> a(n);
    for(int i=0;i<n;i++){
        cin>>a[i];
        ans^=a[i];
    }
    a.push_back(ans);
    cout<<a[(k-1)%(n+1)]<<endl;
       return 0;
}
0