結果

問題 No.18 うーさー暗号
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 01:28:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 76,240 KB
実行使用メモリ 55,176 KB
最終ジャッジ日時 2024-10-01 21:11:15
合計ジャッジ時間 5,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
55,132 KB
testcase_01 AC 157 ms
54,892 KB
testcase_02 AC 152 ms
54,888 KB
testcase_03 AC 172 ms
55,080 KB
testcase_04 AC 165 ms
55,116 KB
testcase_05 AC 160 ms
55,036 KB
testcase_06 AC 173 ms
54,840 KB
testcase_07 AC 169 ms
55,176 KB
testcase_08 AC 168 ms
54,840 KB
testcase_09 AC 171 ms
54,876 KB
testcase_10 AC 154 ms
54,848 KB
testcase_11 AC 161 ms
55,000 KB
testcase_12 AC 169 ms
55,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		String ans = "";
		for (int i=0; i<s.length(); i++) {
			int temp = s.charAt(i);
			temp -= 65;
			int minus = (i+1)%26;
			temp -= minus;
			if (temp < 0) {temp += 26;}
			temp += 65;
			ans += (char)temp;
		}
		System.out.println(ans);
	}
}
0