結果

問題 No.29 パワーアップ
ユーザー MiyamonYMiyamonY
提出日時 2019-09-03 14:06:49
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 5,760 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-06-06 09:56:53
合計ジャッジ時間 1,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
17,024 KB
testcase_01 AC 34 ms
17,024 KB
testcase_02 AC 35 ms
17,024 KB
testcase_03 AC 35 ms
17,024 KB
testcase_04 AC 35 ms
17,024 KB
testcase_05 AC 35 ms
17,152 KB
testcase_06 AC 35 ms
17,280 KB
testcase_07 AC 35 ms
17,280 KB
testcase_08 AC 34 ms
17,024 KB
testcase_09 AC 34 ms
17,024 KB
testcase_10 AC 34 ms
17,280 KB
testcase_11 AC 34 ms
17,024 KB
testcase_12 AC 33 ms
17,024 KB
testcase_13 AC 35 ms
17,024 KB
testcase_14 AC 34 ms
17,280 KB
testcase_15 AC 36 ms
17,152 KB
testcase_16 AC 35 ms
17,152 KB
testcase_17 AC 34 ms
17,024 KB
testcase_18 AC 34 ms
17,152 KB
testcase_19 AC 35 ms
17,024 KB
testcase_20 AC 34 ms
17,152 KB
testcase_21 AC 34 ms
17,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (read-number)
  (string->number (read-line)))

(define vec (make-vector 10 0))

(define extra 0)

(let ((_ (read-number)))
  (let loop ((row (read-line)))
    (cond ((eof-object? row) '())
	  (else
	   (let loop-inner ((column (map string->number (string-split row #\space))))
	     (if (null? column)
		 '()
		 (let ((n (car column)))
		   (vector-set! vec (- n 1) (+ 1 (vector-ref vec (- n 1))))
		   (loop-inner (cdr column)))))
	   (loop (read-line)))))

  (let1 total (fold + 0
		    (map (lambda (n)
			   (set! extra (+ extra (mod (vector-ref vec n) 2)))
			   (div (vector-ref vec n) 2)) (iota 10)))
	(print (+ total (div extra 4)))))
0