結果
問題 | No.18 うーさー暗号 |
ユーザー | TwinkleStar74 |
提出日時 | 2017-10-24 00:20:09 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 56 ms / 5,000 ms |
コード長 | 471 bytes |
コンパイル時間 | 3,244 ms |
コンパイル使用メモリ | 73,300 KB |
実行使用メモリ | 37,092 KB |
最終ジャッジ日時 | 2024-07-07 06:38:37 |
合計ジャッジ時間 | 4,573 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No18{ public static void main(String args[]) throws IOException{ String str = new BufferedReader(new InputStreamReader(System.in)).readLine(); byte[] inputToNum = str.getBytes(); for(int i=0; i<str.length(); i++){ inputToNum[i] -= (i+1) % 26; if(inputToNum[i] < 65){ inputToNum[i] += 26; } } System.out.println(new String(inputToNum)); } }