結果

問題 No.18 うーさー暗号
ユーザー suiginginsuigingin
提出日時 2015-07-07 01:43:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 379 bytes
コンパイル時間 2,992 ms
コンパイル使用メモリ 75,844 KB
実行使用メモリ 55,204 KB
最終ジャッジ日時 2024-07-07 05:45:16
合計ジャッジ時間 5,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
55,144 KB
testcase_01 AC 134 ms
54,960 KB
testcase_02 AC 139 ms
54,904 KB
testcase_03 AC 148 ms
54,928 KB
testcase_04 AC 133 ms
54,812 KB
testcase_05 AC 128 ms
53,368 KB
testcase_06 AC 138 ms
54,440 KB
testcase_07 AC 147 ms
54,844 KB
testcase_08 AC 159 ms
55,040 KB
testcase_09 AC 140 ms
54,756 KB
testcase_10 AC 140 ms
54,816 KB
testcase_11 AC 142 ms
55,204 KB
testcase_12 AC 143 ms
55,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_018 {
	Scanner sc = new Scanner(System.in);

	void run() {
		String s = sc.next();
		String t = "";
		for (int i = 1; i <= s.length(); i++) {
			int move = s.charAt(i - 1) - (i % 26);
			if (move < 65) move += 26;
			t += (char) move;
		}
		System.out.println(t);
	}

	public static void main(String[] args) {
		new No_018().run();
	}
}
0