結果

問題 No.18 うーさー暗号
ユーザー KoheC
提出日時 2020-07-06 10:55:20
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-24 17:11:03
合計ジャッジ時間 2,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 2 RE * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

input_array = gets.chars
count = 0

for input in input_array
    input = (input.ord-1-count) #.chr
    if input < 65
        input = input + 27
    elsif input > 91
        input = input - 27
    end
    print input
    input = input.chr
#    print input
    p input
    count += 1
end
0