Submission #892602


Source Code Expand

import java.util.Scanner;

public class Main {
	void run() {
		Scanner sc = new Scanner(System.in);

		char[] c = sc.next().toCharArray();
		int n = c.length;
		int k = sc.nextInt();

		for (int i = 0; i < n; i++) {
			int t = ('z' + 1 - c[i]);
			if (t <= k) {
				k -= t;
				c[i] = 'a';
			}
		}
		k %= 26;
		c[c.length - 1] += k;
		if ('z' < c[c.length - 1]) {
			c[c.length - 1] -= 26;
		}
		System.out.println(c);
	}

	public static void main(String[] args) {
		new Main().run();
	}
}

Submission Info

Submission Time
Task C - Next Letter
User fujisu
Language Java7 (OpenJDK 1.7.0)
Score 0
Code Size 520 Byte
Status WA
Exec Time 252 ms
Memory 13644 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 400
Status
AC × 3
AC × 19
WA × 8
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 126 ms 9044 KB
0_01.txt AC 126 ms 9040 KB
0_02.txt AC 125 ms 8916 KB
1_00.txt AC 129 ms 8916 KB
1_01.txt AC 126 ms 9044 KB
1_02.txt AC 126 ms 8916 KB
1_03.txt AC 126 ms 8916 KB
1_04.txt AC 124 ms 8916 KB
1_05.txt AC 125 ms 8916 KB
1_06.txt AC 233 ms 12984 KB
1_07.txt AC 234 ms 13472 KB
1_08.txt WA 252 ms 13644 KB
1_09.txt WA 232 ms 13248 KB
1_10.txt WA 251 ms 13520 KB
1_11.txt WA 250 ms 13556 KB
1_12.txt WA 233 ms 13036 KB
1_13.txt WA 242 ms 13632 KB
1_14.txt WA 229 ms 12880 KB
1_15.txt WA 228 ms 13052 KB
1_16.txt AC 252 ms 13180 KB
1_17.txt AC 231 ms 13088 KB
1_18.txt AC 233 ms 12984 KB
1_19.txt AC 252 ms 13448 KB
1_20.txt AC 230 ms 12868 KB
1_21.txt AC 242 ms 13104 KB
1_22.txt AC 227 ms 12940 KB
1_23.txt AC 228 ms 12992 KB