結果

問題 No.18 うーさー暗号
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-11 21:29:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 41,268 KB
最終ジャッジ日時 2024-07-07 06:31:52
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,940 KB
testcase_01 AC 120 ms
40,864 KB
testcase_02 AC 121 ms
41,268 KB
testcase_03 AC 126 ms
41,164 KB
testcase_04 AC 121 ms
40,920 KB
testcase_05 AC 119 ms
41,240 KB
testcase_06 AC 118 ms
40,908 KB
testcase_07 AC 123 ms
40,980 KB
testcase_08 AC 118 ms
39,648 KB
testcase_09 AC 124 ms
41,044 KB
testcase_10 AC 119 ms
41,044 KB
testcase_11 AC 106 ms
41,112 KB
testcase_12 AC 124 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    char[] sch = s.toCharArray();
    char[] ansch = new char[s.length()];
    char a = 'B' - 'A';
    char b = 'Z' - 'A';
    for(int i = 0; i < s.length(); i++) {
      char c = sch[i];
      int move = (i + 1) % 26;
      for(int j = 0; j < move; j++) {
        if(c == 'A') {
          c += b;
        } else {
          c -= a;
        }
      }
      ansch[i] = c;
    }
    String ans = new String(ansch);
    System.out.println(ans);
  }
}
0