結果

問題 No.2399 This Is Truly Final Edition
ユーザー norioc
提出日時 2025-06-22 19:24:59
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 934 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 8,224 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2025-06-22 19:25:01
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

(use scheme.list)
(use util.match)
(use srfi.13) ; string
(use srfi.42) ; list-ec

(define input read-line)

(define (ii)
  (string->number (read-line)))

(define (li)
  (let ((s (read-line)))
    (map string->number (string-split s " "))))

(define (prn . args)
  (for-each (lambda (i x)
              (when (> i 0)
                (display " "))
              (display x))
            (iota (length args))
            args)
  (newline))

(define int string->number)

(define-method min ((xs <sequence>))
  (apply min xs))

(define (minmax . xs) (apply min&max xs))
(define-method minmax ((xs <sequence>)) (apply min&max xs))

(define (sum xs) (apply + xs))

(define divmod div-and-mod)

(define pow
  (case-lambda
   ((a b) (expt a b))
   ((a b m) (expt-mod a b m))))

(let* ((S (input))
       (T (input))
       (N (ii)))
  (prn (string-join (cons S (list-tabulate N (constantly (string-append "_" T))))
                    "")))
0