結果

問題 No.18 うーさー暗号
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-21 17:03:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 55,284 KB
最終ジャッジ日時 2024-07-07 06:38:24
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
55,052 KB
testcase_01 AC 138 ms
54,984 KB
testcase_02 AC 134 ms
54,940 KB
testcase_03 AC 143 ms
55,064 KB
testcase_04 AC 128 ms
54,768 KB
testcase_05 AC 142 ms
54,960 KB
testcase_06 AC 130 ms
54,872 KB
testcase_07 AC 152 ms
55,128 KB
testcase_08 AC 152 ms
55,284 KB
testcase_09 AC 142 ms
53,284 KB
testcase_10 AC 124 ms
54,520 KB
testcase_11 AC 133 ms
54,888 KB
testcase_12 AC 153 ms
54,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		String ans = "";
		for(int i = 0 ; i < s.length() ; i++) {
			int a = (s.charAt(i) - 'A' - (i + 1) + 1300) % 26 + 'A';
			char c = (char)a;
			ans += c;
		}
		System.out.println(ans);
 	}
}

0