結果

問題 No.18 うーさー暗号
ユーザー bigbear90560bigbear90560
提出日時 2015-07-04 23:56:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,791 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2024-07-07 05:44:56
合計ジャッジ時間 4,683 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,948 KB
testcase_01 AC 106 ms
53,864 KB
testcase_02 AC 105 ms
53,964 KB
testcase_03 AC 95 ms
52,380 KB
testcase_04 AC 105 ms
53,736 KB
testcase_05 AC 97 ms
52,696 KB
testcase_06 AC 101 ms
52,616 KB
testcase_07 AC 103 ms
53,860 KB
testcase_08 AC 101 ms
53,032 KB
testcase_09 AC 95 ms
53,000 KB
testcase_10 AC 105 ms
53,812 KB
testcase_11 AC 91 ms
52,600 KB
testcase_12 AC 98 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * No.18 うーさー暗号
 */
public class USACipher {

	public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        // 文字列をchar型配列に分解
        char[] ca = s.toCharArray();
        StringBuilder sb = new StringBuilder();
        
        int Cnt = 1;
        for (int c : ca) {
        	sb.append((char) ( (c - Cnt)<65? c - Cnt + 26: c - Cnt));
        	Cnt++;
        	if (Cnt > 26) Cnt = 1;
        }
        System.out.println(sb.toString());

	}

}
0