/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 9ms 9.52 MiB
#2 Accepted 10ms 9.605 MiB
#3 Accepted 11ms 9.52 MiB

Code

#include<bits/stdc++.h>
using namespace std;
#define int long long

const int N = 3e5 + 9;
const int inf = 3e10 + 9;

int a[N], b[N];
int dp[1003][103];

string s[N];

vector<int> v[7];

std::map<string, int> mp;

int32_t main() {

    int tc = 1;
    cin >> tc;
    while(tc--) {
        string s; cin >> s;
        cout << s[0] << endl;
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1080 String Algorithm
Contest
Bangladesh 2.0
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 15:41:23
Judged At
2024-08-16 15:41:23
Judged By
Score
100
Total Time
11ms
Peak Memory
9.605 MiB