Accepted
Code
#include <bits/stdc++.h>
using namespace std;
void solve() {
string s; cin >> s;
cout << s[0] << '\n';
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int tc; cin >> tc;
while (tc--) {
solve();
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1080 String Algorithm
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-09-04 02:50:34
- Judged At
- 2024-11-11 03:04:30
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 576.0 KiB