結果

問題 No.18 うーさー暗号
ユーザー scachescache
提出日時 2014-11-12 03:47:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,292 KB
最終ジャッジ日時 2024-07-07 05:28:41
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,976 KB
testcase_01 AC 108 ms
41,104 KB
testcase_02 AC 110 ms
41,168 KB
testcase_03 AC 113 ms
41,232 KB
testcase_04 AC 102 ms
41,256 KB
testcase_05 AC 114 ms
41,272 KB
testcase_06 AC 113 ms
41,112 KB
testcase_07 AC 113 ms
40,996 KB
testcase_08 AC 116 ms
40,844 KB
testcase_09 AC 112 ms
41,152 KB
testcase_10 AC 110 ms
40,972 KB
testcase_11 AC 109 ms
41,208 KB
testcase_12 AC 113 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * yukicoder no.18
 * @author scache
 *
 */
public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}

	public Main() {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		solve(s);
	}

	public void solve(String s) {
		StringBuilder sb = new StringBuilder(s.length());
		for(int i=0;i<s.length();i++){
			sb.append((char)((26+(s.charAt(i)-'A'-(i+1)%26))%26+'A'));
		}
		System.out.println(sb.toString());
	}

}
0