이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ff(j, a, b) for(int j=a;j<b;j++)
#define pb push_back;
#define MOD 1000000007
using namespace std;
typedef long long ll;
int n, k;
int a, b, path;
void load_path()
{
path=1;
ff(j, 0, n-1)
{
char tmp;
cin >> tmp;
path=path*2;
if(tmp=='R')
{
path++;
}
path=path%MOD;
}
}
int bin_string_to_int()
{
int res=0;
ff(j, 0, n)
{
char c;
cin >> c;
res=res*2;
if(c=='1')
{
res++;
}
res=res%MOD;
}
return res;
}
int main()
{
cin >> n >> k;
load_path();
a=bin_string_to_int();
b=bin_string_to_int();
cout << (a%MOD+b%MOD)%MOD;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |