Submission #891772


Source Code Expand

//satyaki3794
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define MOD (1000000007LL)
#define LEFT(n) (2*(n))
#define RIGHT(n) (2*(n)+1)
 
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> ii;
typedef pair<int, ii> iii;
 
ll pwr(ll base, ll p, ll mod = MOD){
ll ans = 1;while(p){if(p&1)ans=(ans*base)%mod;base=(base*base)%mod;p/=2;}return ans;
}
 
ll gcd(ll a, ll b){
    if(b == 0)  return a;
    return gcd(b, a%b);
}


string str;
int k;


int main(){

    ios_base::sync_with_stdio(0);

    cin>>str>>k;
    int n = str.length();
    for(int i=0;i<n&&k>0;i++){
        int needed = 26 - (str[i]-'a');
// cout<<needed<<" "<<k<<endl
        if(needed <= k){
            str[i] = 'a';
            k -= needed;
        }
    }

    cout<<str;
    return 0;
}




Submission Info

Submission Time
Task C - Next Letter
User satyaki3794
Language C++14 (GCC 5.4.1)
Score 0
Code Size 898 Byte
Status WA
Exec Time 3 ms
Memory 592 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 1
WA × 2
AC × 3
WA × 24
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt
Case Name Status Exec Time Memory
0_00.txt AC 3 ms 256 KB
0_01.txt WA 3 ms 256 KB
0_02.txt WA 3 ms 256 KB
1_00.txt WA 3 ms 256 KB
1_01.txt AC 3 ms 256 KB
1_02.txt AC 3 ms 256 KB
1_03.txt WA 3 ms 256 KB
1_04.txt WA 3 ms 256 KB
1_05.txt WA 3 ms 256 KB
1_06.txt WA 3 ms 592 KB
1_07.txt WA 3 ms 592 KB
1_08.txt WA 3 ms 512 KB
1_09.txt WA 3 ms 512 KB
1_10.txt WA 3 ms 592 KB
1_11.txt WA 3 ms 512 KB
1_12.txt WA 3 ms 512 KB
1_13.txt WA 3 ms 512 KB
1_14.txt WA 3 ms 512 KB
1_15.txt WA 3 ms 512 KB
1_16.txt WA 3 ms 512 KB
1_17.txt WA 3 ms 512 KB
1_18.txt WA 3 ms 512 KB
1_19.txt WA 3 ms 592 KB
1_20.txt WA 3 ms 512 KB
1_21.txt WA 3 ms 592 KB
1_22.txt WA 3 ms 512 KB
1_23.txt WA 3 ms 512 KB