結果

問題 No.18 うーさー暗号
ユーザー キョウチクキョウチク
提出日時 2022-05-30 18:22:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 3,811 ms
コンパイル使用メモリ 76,316 KB
実行使用メモリ 42,832 KB
最終ジャッジ日時 2024-09-21 00:53:06
合計ジャッジ時間 6,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
42,380 KB
testcase_01 AC 129 ms
41,880 KB
testcase_02 AC 154 ms
42,224 KB
testcase_03 AC 143 ms
42,680 KB
testcase_04 AC 158 ms
42,652 KB
testcase_05 AC 154 ms
42,516 KB
testcase_06 AC 151 ms
42,692 KB
testcase_07 AC 151 ms
42,736 KB
testcase_08 AC 159 ms
42,832 KB
testcase_09 AC 160 ms
42,704 KB
testcase_10 AC 141 ms
42,624 KB
testcase_11 AC 143 ms
42,264 KB
testcase_12 AC 174 ms
42,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test12 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    String regex=" ",plain="";
    line=sc.nextLine().split(regex);
    int n=line[0].length();
    int[] chip_=new int[n];
    int tmp=25;
    for(int i=0;i<n;i++){
      int tmp0=(int)line[0].charAt(i)-65;
      int tmp1=(tmp0+tmp)%26+65;
      plain+=(char)tmp1;
      tmp+=25;
    }
    System.out.println(plain);
    sc.close();
  }
}
0