結果

問題 No.182 新規性の虜
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-11-06 11:40:53
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 36,608 KB
最終ジャッジ日時 2024-06-08 09:05:42
合計ジャッジ時間 3,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,872 KB
testcase_01 AC 24 ms
15,872 KB
testcase_02 AC 24 ms
15,872 KB
testcase_03 AC 23 ms
16,000 KB
testcase_04 AC 24 ms
15,872 KB
testcase_05 AC 24 ms
16,000 KB
testcase_06 AC 24 ms
15,872 KB
testcase_07 AC 24 ms
16,000 KB
testcase_08 AC 126 ms
26,880 KB
testcase_09 AC 172 ms
29,568 KB
testcase_10 AC 152 ms
31,488 KB
testcase_11 AC 135 ms
29,312 KB
testcase_12 AC 73 ms
20,864 KB
testcase_13 AC 24 ms
15,872 KB
testcase_14 AC 23 ms
16,000 KB
testcase_15 AC 24 ms
15,872 KB
testcase_16 AC 24 ms
15,872 KB
testcase_17 AC 24 ms
15,872 KB
testcase_18 AC 123 ms
29,440 KB
testcase_19 AC 91 ms
24,576 KB
testcase_20 AC 80 ms
22,144 KB
testcase_21 AC 130 ms
31,512 KB
testcase_22 AC 85 ms
23,168 KB
testcase_23 AC 24 ms
15,872 KB
testcase_24 AC 186 ms
36,608 KB
testcase_25 AC 131 ms
32,768 KB
testcase_26 AC 49 ms
17,792 KB
testcase_27 AC 24 ms
15,872 KB
evil01.txt AC 201 ms
36,484 KB
evil02.txt AC 196 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