# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
649077 | Ghosty_v2 | Programiranje (COCI17_programiranje) | C++14 | 846 ms | 2152 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
string s;
cin>>s;
int q;
cin>>q;
for(int i=0;i<q;i++) {
int a,b,c,d;
cin>>a>>b>>c>>d;
string s1 = "",s2 = "";
int fdif = (a-b) +1 ;
s1 += s.substr(a-1,fdif);
int sdif = (c-d) +1 ;
s2 += s.substr(c-1,sdif);
if (s1 == s2)cout<<"DA"<<endl;
else cout<<"NE"<<endl;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |