結果

問題 No.2773 Wake up Record 1
ユーザー ducktailducktail
提出日時 2024-06-09 19:49:27
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-06-09 19:49:31
合計ジャッジ時間 3,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,000 KB
testcase_01 AC 24 ms
16,128 KB
testcase_02 AC 24 ms
15,872 KB
testcase_03 AC 24 ms
15,872 KB
testcase_04 AC 24 ms
16,000 KB
testcase_05 AC 101 ms
23,936 KB
testcase_06 AC 44 ms
19,584 KB
testcase_07 AC 108 ms
24,320 KB
testcase_08 AC 50 ms
20,608 KB
testcase_09 AC 67 ms
21,120 KB
testcase_10 AC 47 ms
20,736 KB
testcase_11 AC 100 ms
24,192 KB
testcase_12 AC 76 ms
21,248 KB
testcase_13 AC 37 ms
17,280 KB
testcase_14 AC 68 ms
21,120 KB
testcase_15 AC 25 ms
16,512 KB
testcase_16 AC 100 ms
24,192 KB
testcase_17 AC 76 ms
21,888 KB
testcase_18 AC 41 ms
18,048 KB
testcase_19 AC 103 ms
24,320 KB
testcase_20 AC 37 ms
17,408 KB
testcase_21 AC 98 ms
23,808 KB
testcase_22 AC 101 ms
24,064 KB
testcase_23 AC 103 ms
23,936 KB
testcase_24 AC 71 ms
20,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (solve n s)
  (let loop ([l '()]
             [i 0]
             [c #\x])
    (cond [(= i n) (reverse l)]
          [(and (char=? #\x c)
                (char=? #\o (string-ref s i))) (loop (cons (+ i 1) l) (+ i 1) (string-ref s i))]
          [else (loop l (+ i 1) (string-ref s i))])))

(define (main args)
  (let* ([n (read)]
         [s (symbol->string (read))])
    (let1 l (solve n s)
          (print (length l))
          (print (string-join (map number->string l) " "))))
  0)
0