結果

問題 No.18 うーさー暗号
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-14 23:55:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-09-13 11:37:47
合計ジャッジ時間 4,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,080 KB
testcase_01 AC 126 ms
41,392 KB
testcase_02 AC 125 ms
41,296 KB
testcase_03 AC 128 ms
41,316 KB
testcase_04 AC 129 ms
41,120 KB
testcase_05 AC 131 ms
40,988 KB
testcase_06 AC 129 ms
41,188 KB
testcase_07 AC 114 ms
40,340 KB
testcase_08 AC 131 ms
41,116 KB
testcase_09 AC 131 ms
41,120 KB
testcase_10 AC 124 ms
41,084 KB
testcase_11 AC 126 ms
41,156 KB
testcase_12 AC 130 ms
41,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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