結果
問題 | No.18 うーさー暗号 |
ユーザー | yun_app |
提出日時 | 2016-05-09 12:34:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 57 ms / 5,000 ms |
コード長 | 762 bytes |
コンパイル時間 | 1,973 ms |
コンパイル使用メモリ | 74,956 KB |
実行使用メモリ | 50,244 KB |
最終ジャッジ日時 | 2024-07-07 06:08:29 |
合計ジャッジ時間 | 3,267 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
49,940 KB |
testcase_01 | AC | 53 ms
50,084 KB |
testcase_02 | AC | 52 ms
49,980 KB |
testcase_03 | AC | 57 ms
50,244 KB |
testcase_04 | AC | 52 ms
50,076 KB |
testcase_05 | AC | 50 ms
50,016 KB |
testcase_06 | AC | 54 ms
49,880 KB |
testcase_07 | AC | 52 ms
49,768 KB |
testcase_08 | AC | 53 ms
49,896 KB |
testcase_09 | AC | 53 ms
49,904 KB |
testcase_10 | AC | 54 ms
50,048 KB |
testcase_11 | AC | 52 ms
49,988 KB |
testcase_12 | AC | 53 ms
50,008 KB |
ソースコード
/* package whatever; // don't place package name! */ import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Ideone { public static void main (String[] args) throws java.lang.Exception { // your code goes here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); StringBuilder ans = new StringBuilder(); for(int i=1;i<=line.length();i++){ char c = (char)(line.charAt(i-1)-(char)i%26); while(c<'A'){ c+=26; } while(c>'Z'){ c-=26; } ans.append(c); } System.out.println(ans.toString()); } }