#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 |
1 |
Incorrect |
3 ms |
340 KB |
Output isn't correct |
2 |
Correct |
3 ms |
340 KB |
Output is correct |
3 |
Incorrect |
3 ms |
340 KB |
Output isn't correct |
4 |
Correct |
2 ms |
340 KB |
Output is correct |
5 |
Correct |
3 ms |
340 KB |
Output is correct |
6 |
Incorrect |
825 ms |
1888 KB |
Output isn't correct |
7 |
Incorrect |
846 ms |
1924 KB |
Output isn't correct |
8 |
Incorrect |
811 ms |
2008 KB |
Output isn't correct |
9 |
Incorrect |
804 ms |
1888 KB |
Output isn't correct |
10 |
Incorrect |
820 ms |
2152 KB |
Output isn't correct |