結果

問題 No.18 うーさー暗号
コンテスト
ユーザー KoheC
提出日時 2020-07-06 10:55:20
言語 Ruby
(4.0.2)
コンパイル:
ruby -w -c _filename_
実行:
ruby _filename_
結果
WA  
実行時間 -
コード長 286 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 116 ms
コンパイル使用メモリ 8,960 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2026-04-11 20:25:42
合計ジャッジ時間 1,818 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 2 RE * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #
raw source code

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