結果
問題 | No.893 お客様を誘導せよ |
ユーザー | MiyamonY |
提出日時 | 2019-09-28 23:41:28 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 301 ms / 2,000 ms |
コード長 | 1,175 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 6,692 KB |
実行使用メモリ | 42,348 KB |
最終ジャッジ日時 | 2024-10-03 04:20:23 |
合計ジャッジ時間 | 1,727 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
16,256 KB |
testcase_01 | AC | 23 ms
16,384 KB |
testcase_02 | AC | 73 ms
21,248 KB |
testcase_03 | AC | 157 ms
28,468 KB |
testcase_04 | AC | 163 ms
28,672 KB |
testcase_05 | AC | 150 ms
28,416 KB |
testcase_06 | AC | 118 ms
24,448 KB |
testcase_07 | AC | 23 ms
16,256 KB |
testcase_08 | AC | 301 ms
42,348 KB |
testcase_09 | AC | 31 ms
17,152 KB |
testcase_10 | AC | 22 ms
16,384 KB |
testcase_11 | AC | 22 ms
16,640 KB |
testcase_12 | AC | 30 ms
17,408 KB |
ソースコード
;;; File: main.scm ;; Author: ymiyamoto ;; ;; Created on Sat Sep 28 23:14:58 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) (use data.queue) (define (solve) (read-number (n)) (read-numbers as n) (define q (make-queue)) (for-each (lambda (lis) (enqueue! q lis)) (map (lambda (a) (cdr a)) as)) (prlist (let loop ((ans '())) (if (queue-empty? q) (reverse ans) (let1 lis (dequeue! q) (cond ((null? lis) (loop ans)) (else (enqueue! q (cdr lis)) (loop (cons (car lis) ans))))))))) (solve)