結果
問題 | No.18 うーさー暗号 |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-23 13:07:43 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 813 bytes |
コンパイル時間 | 2,864 ms |
コンパイル使用メモリ | 74,624 KB |
実行使用メモリ | 50,300 KB |
最終ジャッジ日時 | 2024-07-07 06:29:52 |
合計ジャッジ時間 | 3,990 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
50,216 KB |
testcase_01 | AC | 48 ms
50,276 KB |
testcase_02 | AC | 49 ms
49,968 KB |
testcase_03 | AC | 49 ms
50,216 KB |
testcase_04 | AC | 48 ms
50,212 KB |
testcase_05 | AC | 49 ms
50,292 KB |
testcase_06 | AC | 48 ms
50,300 KB |
testcase_07 | AC | 50 ms
50,224 KB |
testcase_08 | AC | 48 ms
50,232 KB |
testcase_09 | AC | 49 ms
50,068 KB |
testcase_10 | AC | 48 ms
50,124 KB |
testcase_11 | AC | 47 ms
50,248 KB |
testcase_12 | AC | 47 ms
50,208 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No18 { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String S = reader.readLine(); StringBuilder builder = new StringBuilder(); for (int i = 0; i < S.length(); i++) { int N = i + 1; builder.append(intToChar(charToInt(S.charAt(i)) - N)); } System.out.println(builder.toString()); } private static int charToInt(char c) { return (c - 'A'); } private static char intToChar(int i) { i = i % 26; if (i < 0) { return (char) ('Z' + i + 1); } return (char) ('A' + i); } }