結果
問題 | No.18 うーさー暗号 |
ユーザー | r.suzuki |
提出日時 | 2016-01-24 02:00:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 842 bytes |
コンパイル時間 | 3,717 ms |
コンパイル使用メモリ | 75,028 KB |
実行使用メモリ | 41,692 KB |
最終ジャッジ日時 | 2024-09-21 15:06:43 |
合計ジャッジ時間 | 6,160 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,016 KB |
testcase_01 | AC | 129 ms
40,996 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 | 137 ms
41,444 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
interface Converter { void encode(); void decode(); } class U_SA_ implements Converter { private final int firstNum = 65; private final int lastNum = 90; private char[] code; public U_SA_(String s) { this.code = s.toCharArray(); } public void encode() { } public void decode() { for (int i = 0; i < code.length; i++) { code[i] -= (i + 1); code[i] = checkD(code[i]); } } public char checkE(char c) { return c; } public char checkD(char c) { if (c >= firstNum) { return c; } else { c += 26; return checkD(c); } } public void printCode() { System.out.println(this.code); } } public class No_18 { public static void main(String[] args) { java.util.Scanner sc = new java.util.Scanner(System.in); U_SA_ u_sa_ = new U_SA_(sc.next()); u_sa_.decode(); u_sa_.printCode(); } }