結果

問題 No.18 うーさー暗号
ユーザー nullzinenullzine
提出日時 2017-01-11 16:29:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 1,055 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 56,348 KB
最終ジャッジ日時 2024-07-07 06:24:16
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,044 KB
testcase_01 AC 112 ms
54,060 KB
testcase_02 AC 108 ms
54,108 KB
testcase_03 AC 122 ms
55,228 KB
testcase_04 AC 110 ms
53,124 KB
testcase_05 AC 129 ms
53,884 KB
testcase_06 AC 137 ms
53,956 KB
testcase_07 AC 146 ms
56,008 KB
testcase_08 AC 127 ms
55,668 KB
testcase_09 AC 146 ms
56,348 KB
testcase_10 AC 115 ms
54,000 KB
testcase_11 AC 108 ms
54,184 KB
testcase_12 AC 133 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 * Created by nullzine on 2017/01/11.
 */
public class Main {

    public static void main(String[] args) {
        System.out.println(new Main().decode(new java.util.Scanner(System.in).nextLine()));
    }

    private String decode(String str) {
        StringBuilder ret = new StringBuilder();
        for (int i = 0; i < str.toCharArray().length; i++) {
            char c = str.charAt(i);
            for (int j = 0; j < i + 1; j++) {
                c--;
                if (c == '@') {
                    c = 'Z';
                }
            }
            ret.append(c);
        }
        return ret.toString();
    }

    private String encode(String str) {
        StringBuilder ret = new StringBuilder();
        for (int i = 0; i < str.toCharArray().length; i++) {
            char c = str.charAt(i);
            for (int j = 0; j < i + 1; j++) {
                c++;
                if (c == '[') {
                    c = 'A';
                }
            }
            ret.append(c);
        }
        return ret.toString();
    }

}
0