Codeforces 1208A. XORinacci Solution

Solve in C++:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int a,b,n,i,t,r=0;
    while(cin>>t)
    {
        for(i=0; i<t; i++)
        {
            cin>>a>>b>>n;
            {

                if(n%3==1)
                    cout<<b<<endl;
                else if(n%3==0)
                    cout<<a<<endl;
                else
                {
                    r=a^b;
                    cout<<r<<endl;
                    r=0;
                }


            }

        }
    }
}

No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.