Submission #649077

#TimeUsernameProblemLanguageResultExecution timeMemory
649077Ghosty_v2Programiranje (COCI17_programiranje)C++14
24 / 80
846 ms2152 KiB
#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 timeMemoryGrader output
Fetching results...