結果
問題 | No.18 うーさー暗号 |
ユーザー | めうめう🎒 |
提出日時 | 2016-05-08 18:51:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 442 bytes |
コンパイル時間 | 2,092 ms |
コンパイル使用メモリ | 75,000 KB |
実行使用メモリ | 56,576 KB |
最終ジャッジ日時 | 2024-10-05 10:48:09 |
合計ジャッジ時間 | 4,466 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
54,224 KB |
testcase_01 | AC | 116 ms
54,180 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 119 ms
54,220 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public String changeStr(String s){ char[] c = s.toCharArray(); for(int i = 0;i < s.length();i++){ c[i] = (char)(c[i] - (i + 1)); while(c[i] < 'A'){ c[i] += 26; } } return String.valueOf(c); } public static void main(String[] args) { Scanner sc = new Scanner(System.in); Main m = new Main(); String str = sc.next(); System.out.println(m.changeStr(str)); } }