結果
問題 | No.18 うーさー暗号 |
ユーザー | takutaku |
提出日時 | 2020-09-16 14:14:55 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,342 bytes |
コンパイル時間 | 2,276 ms |
コンパイル使用メモリ | 74,692 KB |
実行使用メモリ | 56,240 KB |
最終ジャッジ日時 | 2024-06-22 03:11:13 |
合計ジャッジ時間 | 5,165 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
54,028 KB |
testcase_01 | AC | 133 ms
54,032 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { // 入力値を取得 Scanner sc = new Scanner(System.in); String str = sc.nextLine(); // 入力文字列を1文字ずつの配列にする // アルファベットの配列を準備する String[] s = str.split("",0); String[] alphabet = {"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"}; String[] result = new String[s.length]; for(int i = 0; i < s.length; i++) { for(int j = 0; j < alphabet.length; j++) { // アルファベットの配列と照合して要素番号を取得する if(s[i].equals(alphabet[j])) { int n = j; n = n - i; // 要素番号をずらしたアルファベットを配列に格納する if(n == 0) { n = 25; }else { n--; } result[i] = alphabet[n]; } } } // 出力する for(int i = 0; i < result.length; i++) { System.out.print(result[i]); } } }