結果
問題 | No.18 うーさー暗号 |
ユーザー | kaoetaya |
提出日時 | 2016-12-09 17:59:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 2,993 ms |
コンパイル使用メモリ | 77,764 KB |
実行使用メモリ | 55,076 KB |
最終ジャッジ日時 | 2024-11-28 19:29:05 |
合計ジャッジ時間 | 5,283 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
41,176 KB |
testcase_01 | AC | 105 ms
41,056 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 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
import java.util.*; public class Test { public static void main(String[] args) { Scanner s = new Scanner(System.in); String str = s.next(); char str2[] = new char[str.length()]; for(int i=1;i<=str.length();i++){ if(i % 26 == 0){ if((str.charAt(i-1) - i) < 'A'){ str2[i-1] += (str.charAt(i-1) - i + 26); } else{ str2[i-1] += (str.charAt(i-1) - i); } } else{ if((str.charAt(i-1) - i) < 'A'){ str2[i-1] += (str.charAt(i-1) - (i%26) + 26); } else{ str2[i-1] += (str.charAt(i-1) - (i%26)); } } } for(int i=0;i<str2.length;i++){ System.out.print(str2[i]); } System.out.println(); } }