結果
問題 | No.18 うーさー暗号 |
ユーザー | kaoetaya |
提出日時 | 2016-12-09 17:58:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 5,193 ms |
コンパイル使用メモリ | 77,484 KB |
実行使用メモリ | 41,828 KB |
最終ジャッジ日時 | 2024-05-06 12:56:04 |
合計ジャッジ時間 | 7,680 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
41,528 KB |
testcase_01 | AC | 102 ms
40,368 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(); } }