Submission

Status:

PPPPPPP-PP

Subtask/Task Score:

90/100

Score: 90

User: Quinruj

Problemset: เลขหลักของผลคูณ

Language: cpp

Time: 0.003 second

Submitted On: 2025-10-05 20:45:51

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

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    ll a,b,x;cin>>a>>b>>x;
    ll c = a*b;
    string s = to_string(c);
    if (x >= s.size() || x < 1) cout << '_';
    else cout << s[x-1];
}