結果

問題 No.18 うーさー暗号
ユーザー itezpaceitezpace
提出日時 2016-08-16 19:55:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 697 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 37,712 KB
最終ジャッジ日時 2024-07-07 06:14:00
合計ジャッジ時間 3,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,224 KB
testcase_01 AC 46 ms
36,376 KB
testcase_02 AC 48 ms
36,384 KB
testcase_03 AC 82 ms
37,712 KB
testcase_04 AC 54 ms
36,232 KB
testcase_05 AC 63 ms
36,592 KB
testcase_06 AC 87 ms
37,268 KB
testcase_07 AC 86 ms
37,108 KB
testcase_08 AC 88 ms
37,512 KB
testcase_09 AC 74 ms
37,484 KB
testcase_10 AC 48 ms
36,552 KB
testcase_11 AC 47 ms
36,480 KB
testcase_12 AC 70 ms
37,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.*;
import java.io.*;

class Yuki18 {
  public static void main(String[] args) throws IOException {
    DataInputStream d=new DataInputStream(System.in);
    String s;
    s=d.readLine();
    int ss;
    ss=s.length();
    for(int i=0; i<ss; ++i){
      char c;
      c=s.charAt(i);
      int a;
      a=c-'0';
      a-=(1+i);
      if(a<17){
        int b;
        if(a<0){
          b=a;
          b-=17;
          b*=-1;
        } else {
          b=17-a;
        }
        b%=26;
        if(b==0){
          a=17;
        } else {
          a=43-b;
        }
      }
      char c2;
      c2=(char)('A'+(a-17));
      System.out.print(c2);
    }
    System.out.println();
  }
}
0