結果

問題 No.182 新規性の虜
ユーザー バカらっくバカらっく
提出日時 2018-03-02 11:08:39
言語 Swift
(6.0.3)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 136,288 KB
実行使用メモリ 14,504 KB
最終ジャッジ日時 2024-11-30 12:01:16
合計ジャッジ時間 3,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,216 KB
testcase_01 AC 7 ms
9,216 KB
testcase_02 AC 7 ms
9,216 KB
testcase_03 AC 7 ms
9,216 KB
testcase_04 AC 8 ms
9,344 KB
testcase_05 AC 8 ms
9,216 KB
testcase_06 AC 8 ms
9,344 KB
testcase_07 AC 8 ms
9,344 KB
testcase_08 AC 48 ms
11,624 KB
testcase_09 AC 75 ms
14,504 KB
testcase_10 AC 67 ms
14,264 KB
testcase_11 AC 54 ms
12,456 KB
testcase_12 AC 28 ms
10,096 KB
testcase_13 AC 8 ms
9,216 KB
testcase_14 AC 7 ms
9,344 KB
testcase_15 AC 7 ms
9,216 KB
testcase_16 AC 8 ms
9,216 KB
testcase_17 AC 8 ms
9,344 KB
testcase_18 AC 45 ms
13,540 KB
testcase_19 AC 33 ms
11,132 KB
testcase_20 AC 22 ms
10,008 KB
testcase_21 AC 49 ms
13,456 KB
testcase_22 AC 27 ms
11,072 KB
testcase_23 AC 7 ms
9,216 KB
testcase_24 AC 53 ms
14,136 KB
testcase_25 AC 29 ms
12,876 KB
testcase_26 AC 17 ms
9,616 KB
testcase_27 AC 9 ms
9,216 KB
evil01.txt AC 82 ms
14,532 KB
evil02.txt AC 77 ms
14,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let inputCount = Int(readLine()!)!

let numList = readLine()!.split(separator: " ").map{Int($0)!}.sorted()

var ans = 0
for i in 0..<numList.count {
    var isUnq = true
    if( i > 0 && numList[i-1] == numList[i]) {
        isUnq = false
    }
    if(i < numList.count-1 && numList[i] == numList[i+1]) {
        isUnq = false
    }
    if(isUnq) {
        ans+=1
    }
}

print(ans)
0