結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー ldsybldsyb
提出日時 2016-05-24 18:03:53
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-06-26 07:55:32
合計ジャッジ時間 2,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,384 KB
testcase_01 AC 124 ms
20,864 KB
testcase_02 AC 26 ms
16,000 KB
testcase_03 AC 26 ms
15,872 KB
testcase_04 AC 25 ms
16,000 KB
testcase_05 AC 121 ms
20,736 KB
testcase_06 AC 25 ms
15,872 KB
testcase_07 AC 26 ms
15,872 KB
testcase_08 AC 25 ms
15,872 KB
testcase_09 AC 25 ms
15,872 KB
testcase_10 AC 26 ms
15,872 KB
testcase_11 AC 26 ms
16,000 KB
testcase_12 AC 25 ms
16,000 KB
testcase_13 AC 25 ms
15,872 KB
testcase_14 AC 85 ms
20,736 KB
testcase_15 AC 51 ms
17,792 KB
testcase_16 AC 100 ms
20,736 KB
testcase_17 AC 49 ms
17,664 KB
testcase_18 AC 97 ms
20,736 KB
testcase_19 AC 84 ms
20,736 KB
testcase_20 AC 125 ms
20,864 KB
testcase_21 AC 28 ms
16,256 KB
testcase_22 AC 60 ms
19,072 KB
testcase_23 AC 118 ms
20,736 KB
testcase_24 AC 122 ms
20,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define ans 0)
(define max 0)
(define tmp 0)
(define n (read))
(define l (list))
(let loop((i n))
	(set! l (cons (read) l))
	(if (> i 1) (loop (- i 1))))
(define (countnum ls num retnum)
	(if (pair? ls)
		(countnum (cdr ls) num (if (= (car ls) num) (+ retnum 1) retnum))
		retnum))
(let loop((i 1))
	(set! tmp (countnum l i 0))
	(if (<= max tmp)
		(begin
			(set! ans i)
			(set! max tmp)))
	(if (< i 6) (loop (+ i 1))))
(display ans)
(newline)
0