結果

問題 No.18 うーさー暗号
ユーザー kuramukuramu
提出日時 2016-01-20 00:43:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 37,084 KB
最終ジャッジ日時 2024-09-21 14:41:36
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,784 KB
testcase_01 WA -
testcase_02 AC 44 ms
36,804 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  String line = stdReader.readLine();
	    	  StringBuilder sb = new StringBuilder();
	    	  for(int i=1;i<=line.length();i++){
	    		  int num = i % 26;
	    		  sb.append(Character.toChars(line.charAt(i-1)-num));
	    	  }
	    	  System.out.println(sb.toString());
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0