Submission #381426

#TimeUsernameProblemLanguageResultExecution timeMemory
381426BilAktauAlmansurZigZag (COCI17_zigzag)C++17
0 / 80
283 ms6484 KiB
#include <bits/stdc++.h> using namespace std; int main () { int a, b; cin>>a>>b; vector <string> s; vector <char> s1; for (int i=0; i<a; i++) { string s2; cin>>s2; s.push_back(s2); } for (int i=0; i<b; i++) { char ch; cin>>ch; s1.push_back(ch); } for (int i=0; i<b; i++) { if (s1[i]==s[i][0]) { cout << s[i] << endl; } else { cout << s[i+1] << endl; } } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...