結果
問題 | No.883 ぬりえ |
ユーザー | MiyamonY |
提出日時 | 2019-10-13 02:21:31 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 152 ms / 2,000 ms |
コード長 | 1,435 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 6,940 KB |
実行使用メモリ | 20,864 KB |
最終ジャッジ日時 | 2024-05-07 12:24:27 |
合計ジャッジ時間 | 2,582 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
16,128 KB |
testcase_01 | AC | 25 ms
16,000 KB |
testcase_02 | AC | 24 ms
16,000 KB |
testcase_03 | AC | 24 ms
16,128 KB |
testcase_04 | AC | 24 ms
16,000 KB |
testcase_05 | AC | 24 ms
16,000 KB |
testcase_06 | AC | 24 ms
16,000 KB |
testcase_07 | AC | 23 ms
16,128 KB |
testcase_08 | AC | 24 ms
16,000 KB |
testcase_09 | AC | 24 ms
16,000 KB |
testcase_10 | AC | 24 ms
16,128 KB |
testcase_11 | AC | 25 ms
16,000 KB |
testcase_12 | AC | 24 ms
16,000 KB |
testcase_13 | AC | 25 ms
16,256 KB |
testcase_14 | AC | 24 ms
16,128 KB |
testcase_15 | AC | 152 ms
20,864 KB |
testcase_16 | AC | 59 ms
20,736 KB |
testcase_17 | AC | 40 ms
19,072 KB |
testcase_18 | AC | 25 ms
16,000 KB |
testcase_19 | AC | 24 ms
16,000 KB |
testcase_20 | AC | 24 ms
16,128 KB |
ソースコード
;;; File: main.scm ;; Author: ymiyamoto ;; ;; Created on Mon Oct 7 02:32:46 2019 ;; (define-syntax read-number (syntax-rules () ((_ nums) (define-values nums (apply values (map string->number (string-split (read-line) #\space))))))) (define-syntax read-numbers (syntax-rules () ((_ as) (define as (map string->number (string-split (read-line) #\space)))) ((_ as n) (define as (map (lambda (_) (map string->number (string-split (read-line) #\space))) (iota n)))))) (define-syntax prlist (syntax-rules () ((_ lis) (print (string-join (map number->string lis) " "))))) (define-syntax 1+ (syntax-rules () ((_ x) (+ x 1)))) (define-syntax 1- (syntax-rules () ((_ x) (- x 1)))) (define MOD 1000000007) (define (rotate i s) (define l (string->list s)) (list->string (append (drop l i) (take l i)))) (define (solve) (read-number (n k)) (cond ((<= n (* k k)) (let1 m (x->integer (ceiling (sqrt n))) (print m) (let loop ((i m) (n n)) (when (> i 0) (let1 l (min m n) (print (string-append (make-string l #\#) (make-string (- m l) #\.))) (loop (1- i) (- n l))))))) (else (let1 m (ceiling (/ n k)) (print m) (let loop ((i 0) (n n)) (when (< i m) (let1 l (min k n) (print (rotate i (string-append (make-string l #\#) (make-string (- m l) #\.)))) (loop (1+ i) (- n l))))))))) (solve)