結果

問題 No.18 うーさー暗号
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 18:09:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 3,679 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-07-08 09:20:43
合計ジャッジ時間 5,914 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,144 KB
testcase_01 AC 123 ms
41,196 KB
testcase_02 AC 108 ms
40,032 KB
testcase_03 AC 127 ms
41,408 KB
testcase_04 AC 126 ms
41,316 KB
testcase_05 AC 123 ms
41,404 KB
testcase_06 AC 125 ms
41,252 KB
testcase_07 AC 113 ms
40,100 KB
testcase_08 AC 123 ms
41,280 KB
testcase_09 AC 123 ms
41,460 KB
testcase_10 AC 122 ms
41,260 KB
testcase_11 AC 121 ms
41,500 KB
testcase_12 AC 121 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con18 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String str = s.nextLine();
		s.close();

		byte[] sbyte = str.getBytes();
		for(int i = 0;i < sbyte.length;i++){
			sbyte[i] -= 64;
			sbyte[i] -= (i + 1) % 26;
			while(sbyte[i] <= 0){
				sbyte[i] += 26;
			}
			sbyte[i] += 64;
		}
		System.out.println(new String(sbyte));

	}
}

0