結果

問題 No.18 うーさー暗号
ユーザー MOD9cXWdOsRxvPyMOD9cXWdOsRxvPy
提出日時 2022-10-31 21:11:21
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-07-08 09:25:58
合計ジャッジ時間 1,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
16,128 KB
testcase_01 AC 27 ms
15,872 KB
testcase_02 AC 23 ms
16,128 KB
testcase_03 AC 25 ms
16,384 KB
testcase_04 AC 24 ms
16,000 KB
testcase_05 AC 24 ms
16,000 KB
testcase_06 AC 25 ms
16,256 KB
testcase_07 AC 24 ms
16,256 KB
testcase_08 AC 24 ms
16,384 KB
testcase_09 AC 25 ms
16,128 KB
testcase_10 AC 23 ms
16,000 KB
testcase_11 AC 23 ms
15,872 KB
testcase_12 AC 24 ms
16,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define cchar-clist (string-split "ZYXWVUTSRQPONMLKJIHGFEDCBA" ""))

(set-cdr! (last-pair cchar-clist) cchar-clist)

(define (char-shift c x)
  (car (drop (member c cchar-clist) x))
  )

(define (decode str)
  (define (dec-iter i sl r)
    (if (null? sl) (string-join (reverse r) "")
	(dec-iter
	 (+ i 1)
	 (cdr sl)
	 (cons (char-shift (car sl) i) r)))
    )
   (dec-iter 1 (string-split str "") ())
  )

(define (main _)
  (display (decode (read-line)))
  (newline)
  0)
0