結果

問題 No.182 新規性の虜
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-11-06 11:40:53
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 36,352 KB
最終ジャッジ日時 2024-12-27 10:16:09
合計ジャッジ時間 4,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,872 KB
testcase_01 AC 30 ms
16,000 KB
testcase_02 AC 27 ms
15,744 KB
testcase_03 AC 27 ms
15,744 KB
testcase_04 AC 29 ms
15,872 KB
testcase_05 AC 26 ms
15,872 KB
testcase_06 AC 26 ms
16,000 KB
testcase_07 AC 29 ms
15,872 KB
testcase_08 AC 135 ms
26,880 KB
testcase_09 AC 177 ms
29,696 KB
testcase_10 AC 158 ms
31,232 KB
testcase_11 AC 142 ms
29,184 KB
testcase_12 AC 79 ms
20,736 KB
testcase_13 AC 24 ms
16,000 KB
testcase_14 AC 28 ms
15,744 KB
testcase_15 AC 24 ms
15,872 KB
testcase_16 AC 24 ms
15,872 KB
testcase_17 AC 24 ms
16,000 KB
testcase_18 AC 128 ms
29,312 KB
testcase_19 AC 99 ms
24,576 KB
testcase_20 AC 87 ms
21,888 KB
testcase_21 AC 136 ms
31,360 KB
testcase_22 AC 91 ms
23,296 KB
testcase_23 AC 23 ms
15,744 KB
testcase_24 AC 189 ms
36,352 KB
testcase_25 AC 133 ms
32,768 KB
testcase_26 AC 47 ms
17,920 KB
testcase_27 AC 23 ms
16,000 KB
evil01.txt AC 205 ms
36,480 KB
evil02.txt AC 191 ms
36,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (MAIN)
  (let* ((n (string->number (read-line)))
        (numbers (map string->number (string-split (read-line) #\space)))
        (ht (make-hash-table)))
    (for-each
      (lambda (number) (hash-table-put! ht number (+ 1 (hash-table-get ht number 0))))
      numbers)
    (display
      (hash-table-fold ht
                      (lambda (ky val cnt) (if (= val 1) (+ 1 cnt) cnt))
                      0))
    (newline)))

(MAIN)
0