結果

問題 No.18 うーさー暗号
ユーザー mustonmuston
提出日時 2016-05-10 09:21:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 351 bytes
コンパイル時間 1,623 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-07-07 06:08:43
合計ジャッジ時間 3,796 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,780 KB
testcase_01 AC 94 ms
52,964 KB
testcase_02 AC 107 ms
53,892 KB
testcase_03 AC 149 ms
54,084 KB
testcase_04 AC 110 ms
53,072 KB
testcase_05 AC 133 ms
54,044 KB
testcase_06 AC 125 ms
53,088 KB
testcase_07 AC 151 ms
54,012 KB
testcase_08 AC 142 ms
53,972 KB
testcase_09 AC 128 ms
53,228 KB
testcase_10 AC 112 ms
53,848 KB
testcase_11 AC 113 ms
53,800 KB
testcase_12 AC 124 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class Aaf {
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    char [] str = scan.next().toCharArray();
    int i=0;
    for(i=0;i<str.length;i++){
      int a = (int)str[i]-i-1;
      while(a<65)
        a=a+26;
      char c = (char)a;
      System.out.print(c);
    }
  }
}
0