結果

問題 No.182 新規性の虜
ユーザー バカらっくバカらっく
提出日時 2018-03-02 11:08:39
言語 Swift
(5.10.0)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 1,432 ms
コンパイル使用メモリ 135,780 KB
実行使用メモリ 14,376 KB
最終ジャッジ日時 2024-05-07 17:21:14
合計ジャッジ時間 3,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,216 KB
testcase_01 AC 8 ms
9,088 KB
testcase_02 AC 8 ms
9,216 KB
testcase_03 AC 7 ms
9,344 KB
testcase_04 AC 8 ms
9,344 KB
testcase_05 AC 8 ms
9,216 KB
testcase_06 AC 8 ms
9,216 KB
testcase_07 AC 7 ms
9,216 KB
testcase_08 AC 49 ms
11,496 KB
testcase_09 AC 77 ms
14,376 KB
testcase_10 AC 66 ms
14,268 KB
testcase_11 AC 54 ms
12,204 KB
testcase_12 AC 28 ms
9,968 KB
testcase_13 AC 7 ms
9,216 KB
testcase_14 AC 7 ms
9,344 KB
testcase_15 AC 7 ms
9,088 KB
testcase_16 AC 8 ms
9,216 KB
testcase_17 AC 7 ms
9,344 KB
testcase_18 AC 45 ms
13,664 KB
testcase_19 AC 33 ms
11,004 KB
testcase_20 AC 22 ms
10,136 KB
testcase_21 AC 49 ms
13,460 KB
testcase_22 AC 29 ms
11,200 KB
testcase_23 AC 8 ms
9,088 KB
testcase_24 AC 55 ms
14,140 KB
testcase_25 AC 29 ms
13,128 KB
testcase_26 AC 16 ms
9,484 KB
testcase_27 AC 8 ms
9,088 KB
evil01.txt AC 78 ms
14,528 KB
evil02.txt AC 77 ms
14,788 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