結果

問題 No.18 うーさー暗号
ユーザー SagTokiSagToki
提出日時 2018-05-07 14:45:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 3,574 ms
コンパイル使用メモリ 76,188 KB
実行使用メモリ 43,208 KB
最終ジャッジ日時 2024-06-28 02:16:38
合計ジャッジ時間 6,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
42,592 KB
testcase_01 AC 161 ms
42,592 KB
testcase_02 AC 161 ms
42,592 KB
testcase_03 AC 174 ms
43,208 KB
testcase_04 AC 168 ms
42,816 KB
testcase_05 AC 163 ms
42,716 KB
testcase_06 AC 183 ms
42,876 KB
testcase_07 AC 174 ms
43,056 KB
testcase_08 AC 184 ms
42,992 KB
testcase_09 AC 181 ms
42,504 KB
testcase_10 AC 159 ms
42,548 KB
testcase_11 AC 162 ms
42,184 KB
testcase_12 AC 168 ms
42,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class UsaCord {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        String InputText =scanner.next(); //暗号化する文字列
        String CipherText = ""; //暗号化後のデータ格納
        int RepetitionNumber = 0; //繰り返し数の定義
       
         for(int i=0 ; i<InputText.length() ; i++){
            RepetitionNumber = i + 1;
            
            char no = (char) RepetitionNumber; //繰り返し数だけ文字をずらす
            int num = InputText.charAt(i) - no;
            while(num <= 64){
                num = num + 26;
            }
            CipherText = CipherText + 
                    ((char)num);  
         }           
        System.out.println(CipherText);
    }
}
0