結果

問題 No.18 うーさー暗号
ユーザー sjgq5302sjgq5302
提出日時 2017-08-29 01:04:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 690 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-07-07 06:36:09
合計ジャッジ時間 1,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 88 ms
12,416 KB
testcase_04 AC 80 ms
12,032 KB
testcase_05 AC 80 ms
12,416 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 88 ms
12,416 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 AC 87 ms
12,416 KB
testcase_10 AC 77 ms
12,032 KB
testcase_11 AC 75 ms
12,032 KB
testcase_12 AC 82 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def usa_code(character, sequence) #うーさー復号メソッド
    code = {}
    hash_v = 1

    ("A".."Z").each{|hash_k|
        code.store(hash_k, hash_v.to_i)
        hash_v += 1
    }
    
    while sequence > 26 do #A→Zを2回以上またがないために
        sequence -= 26
    end
    
    if code[character] <= sequence then #復号でA→Zに跳ぶ時
        return code.key(26 - (sequence - code[character]))
    else
        return code.key(code[character] - sequence)
    end
end

input = gets.chomp.chars.map(&:to_s) #入力文
decryption = [] #復号文

for i in 0..(input.length - 1) do
    decryption << usa_code(input[i], (i + 1))
end

puts decryption.join("")
0