結果

問題 No.18 うーさー暗号
ユーザー キョウチクキョウチク
提出日時 2022-05-14 18:53:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 3,539 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 39,984 KB
最終ジャッジ日時 2024-07-23 05:05:03
合計ジャッジ時間 5,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
38,064 KB
testcase_01 AC 86 ms
38,512 KB
testcase_02 AC 90 ms
38,192 KB
testcase_03 AC 104 ms
38,712 KB
testcase_04 AC 93 ms
38,320 KB
testcase_05 AC 99 ms
39,984 KB
testcase_06 AC 93 ms
38,860 KB
testcase_07 AC 102 ms
38,420 KB
testcase_08 AC 103 ms
38,968 KB
testcase_09 AC 102 ms
38,596 KB
testcase_10 AC 86 ms
38,344 KB
testcase_11 AC 89 ms
38,256 KB
testcase_12 AC 89 ms
38,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Test8 {
  public static void main(String[] args) throws IOException{
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    String line=br.readLine();
    int n=line.length();
    String data="";
    for(int i=0;i<n;i++){
      data+=(char)(((int)line.charAt(i)-65+26*40-i-1)%26+65);
    }
    System.out.println(data);
  }
}
0