Submission #1372570


Source Code Expand

using System;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace codefestival_2016_qualA_c
{
    class Program
    {
        static void Main(string[] args)
        {
            string a = Console.ReadLine();
            int n = int.Parse(Console.ReadLine());
            string ans ="";
            for (int i = 0; i < a.Length; i++)
            {
                if (a[i] == 'a') { ans += "a"; continue; }
                if ((int)a[i] + n >= 'z' + 1) { ans += "a"; n -= 26 + 'a' - a[i]; }
                if (i == a.Length - 1) { ans += (n + a[1]) % 26; }
            }
            Console.WriteLine(ans);       }
    }
}

Submission Info

Submission Time
Task C - Next Letter
User rayhotate
Language C# (Mono 4.6.2.0)
Score 0
Code Size 677 Byte
Status RE
Exec Time 2108 ms
Memory 34772 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
WA × 3
AC × 1
WA × 11
TLE × 12
RE × 3
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 WA 20 ms 11092 KB
0_01.txt WA 20 ms 11092 KB
0_02.txt WA 20 ms 9044 KB
1_00.txt WA 19 ms 9044 KB
1_01.txt RE 19 ms 8544 KB
1_02.txt AC 19 ms 9044 KB
1_03.txt RE 19 ms 10592 KB
1_04.txt WA 20 ms 11092 KB
1_05.txt RE 19 ms 8544 KB
1_06.txt TLE 2105 ms 32724 KB
1_07.txt TLE 2104 ms 32724 KB
1_08.txt WA 325 ms 32724 KB
1_09.txt WA 248 ms 32724 KB
1_10.txt WA 129 ms 34772 KB
1_11.txt WA 884 ms 32724 KB
1_12.txt WA 59 ms 34772 KB
1_13.txt WA 179 ms 32724 KB
1_14.txt TLE 2105 ms 32724 KB
1_15.txt TLE 2104 ms 32724 KB
1_16.txt TLE 2104 ms 34772 KB
1_17.txt TLE 2105 ms 34772 KB
1_18.txt TLE 2104 ms 32724 KB
1_19.txt TLE 2105 ms 34772 KB
1_20.txt TLE 2105 ms 34772 KB
1_21.txt TLE 2105 ms 34772 KB
1_22.txt TLE 2108 ms 32724 KB
1_23.txt TLE 2104 ms 34772 KB