結果
問題 | No.35 タイパー高橋 |
ユーザー | MiyamonY |
提出日時 | 2019-09-04 00:29:32 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 475 bytes |
コンパイル時間 | 65 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 17,280 KB |
最終ジャッジ日時 | 2024-06-07 12:15:57 |
合計ジャッジ時間 | 841 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
17,152 KB |
testcase_01 | AC | 41 ms
17,152 KB |
testcase_02 | AC | 43 ms
17,280 KB |
testcase_03 | AC | 41 ms
17,024 KB |
ソースコード
(define (read-number) (string->number (read-line))) (let* ((n (read-number)) (arr (map (lambda (_) (define a (read)) (define b (symbol->string (read))) (cons a b)) (iota n))) (total-length (fold + 0 (map (lambda (x) (string-length (cdr x))) arr))) (count-success (fold + 0 (map (lambda (x) (min (div (* 12 (car x)) 1000) (string-length (cdr x)))) arr) ))) (format #t "~a ~a\n" count-success (- total-length count-success)))