# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
649219 | Ghosty_v2 | Programiranje (COCI17_programiranje) | C++17 | 982 ms | 884 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |