結果
問題 | No.712 赤旗 |
ユーザー | _Clay____ |
提出日時 | 2018-10-07 18:53:40 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
WA
|
実行時間 | - |
コード長 | 856 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-10-12 14:15:51 |
合計ジャッジ時間 | 577 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
(let* ((l1 (map string->number (string-split (read-line) " "))) (y (car l1)) (result (let loop ((i 0) (a 0)) (if (= i y) a (loop (+ i 1) (+ a (let loop2 ((l (string->list (read-line))) (a 0)) (if (null? l) a (loop2 (cdr l) (if (equal? "W" (car l)) (+ a 1) a)))))))))) (print result))