結果

問題 No.18 うーさー暗号
ユーザー mkanenobu
提出日時 2018-03-29 21:43:56
言語 Nim
(2.2.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 208 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 66,696 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 05:41:09
合計ジャッジ時間 2,864 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'strutils' [UnusedImport]

ソースコード

diff #

import sequtils, strutils

var
    s = readLine(stdin)
    res = ""

for i in 1..len(s):
    var charInt = int(s[i - 1]) - i
    while charInt < 65:
        charInt += 26
    res.add(char(charInt))

echo res
0