結果

問題 No.2773 Wake up Record 1
ユーザー ducktailducktail
提出日時 2024-06-09 19:45:28
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-06-09 19:45:31
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
16,000 KB
testcase_01 WA -
testcase_02 AC 21 ms
16,128 KB
testcase_03 AC 21 ms
16,128 KB
testcase_04 WA -
testcase_05 AC 81 ms
24,172 KB
testcase_06 AC 36 ms
19,584 KB
testcase_07 AC 85 ms
24,320 KB
testcase_08 AC 41 ms
20,608 KB
testcase_09 AC 65 ms
21,120 KB
testcase_10 AC 41 ms
20,736 KB
testcase_11 AC 82 ms
24,064 KB
testcase_12 AC 63 ms
21,120 KB
testcase_13 AC 34 ms
17,536 KB
testcase_14 AC 53 ms
21,120 KB
testcase_15 AC 22 ms
16,512 KB
testcase_16 AC 84 ms
23,936 KB
testcase_17 AC 63 ms
22,144 KB
testcase_18 AC 33 ms
18,048 KB
testcase_19 AC 86 ms
23,960 KB
testcase_20 AC 31 ms
17,152 KB
testcase_21 AC 80 ms
24,064 KB
testcase_22 AC 80 ms
23,808 KB
testcase_23 AC 89 ms
24,064 KB
testcase_24 AC 61 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))
          (if (not (null? l)) (print (string-join (map number->string l) " ")))))
  0)
0