結果

問題 No.1455 拡張ROTN
ユーザー tentententen
提出日時 2021-04-13 08:57:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,601 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 37,400 KB
最終ジャッジ日時 2024-06-29 02:57:05
合計ジャッジ時間 4,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,264 KB
testcase_01 AC 48 ms
37,196 KB
testcase_02 AC 52 ms
36,924 KB
testcase_03 AC 51 ms
37,216 KB
testcase_04 AC 51 ms
37,032 KB
testcase_05 AC 51 ms
37,224 KB
testcase_06 AC 55 ms
37,400 KB
testcase_07 AC 53 ms
37,336 KB
testcase_08 AC 54 ms
37,064 KB
testcase_09 AC 55 ms
37,208 KB
testcase_10 AC 51 ms
37,180 KB
testcase_11 AC 48 ms
37,224 KB
testcase_12 AC 48 ms
37,064 KB
testcase_13 AC 47 ms
37,224 KB
testcase_14 AC 48 ms
37,316 KB
testcase_15 AC 47 ms
37,216 KB
testcase_16 AC 51 ms
37,136 KB
testcase_17 AC 51 ms
37,096 KB
testcase_18 AC 51 ms
37,060 KB
testcase_19 AC 49 ms
37,112 KB
testcase_20 AC 51 ms
37,160 KB
testcase_21 AC 50 ms
37,176 KB
testcase_22 AC 51 ms
36,904 KB
testcase_23 AC 48 ms
37,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        String s = sc.next();
        long n = sc.nextLong();
        for (int i = 0; i < Math.min(10, n); i++) {
            s = change(s);
        }
        n = Math.max(0, n - 10);
        n %= 26;
        for (int i = 0; i < n; i++) {
            s = change(s);
        }
        System.out.println(s);
    }
    
    static String change(String s) {
        StringBuilder ans = new StringBuilder();
        for (char c : s.toCharArray()) {
            if (c >= 'a' && c <= 'z') {
                ans.append((char)((c - 'a' + 1) % 26 + 'a'));
            } else if (c >= 'A' && c <= 'Z') {
                ans.append((char)((c - 'A' + 1) % 26 + 'A'));
            } else if (c == '9') {
                ans.append("CpCzNkSuTbEoA");
            } else {
                ans.append((char)(c + 1));
            }
        }
        return ans.toString();
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0