結果

問題 No.182 新規性の虜
ユーザー hkawa117hkawa117
提出日時 2015-09-09 23:45:33
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 12,688 KB
最終ジャッジ日時 2024-07-19 05:08:53
合計ジャッジ時間 8,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,016 KB
testcase_01 AC 9 ms
6,016 KB
testcase_02 AC 9 ms
6,016 KB
testcase_03 AC 9 ms
6,144 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 9 ms
6,144 KB
testcase_07 AC 9 ms
6,144 KB
testcase_08 AC 257 ms
9,484 KB
testcase_09 AC 643 ms
11,808 KB
testcase_10 AC 493 ms
10,800 KB
testcase_11 AC 337 ms
10,112 KB
testcase_12 AC 79 ms
7,808 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 10 ms
6,144 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 10 ms
6,016 KB
testcase_24 AC 835 ms
12,688 KB
testcase_25 AC 815 ms
7,932 KB
testcase_26 AC 27 ms
6,912 KB
testcase_27 AC 9 ms
6,144 KB
evil01.txt AC 821 ms
12,672 KB
evil02.txt AC 831 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
input = sorted(raw_input().strip().split())
cnt = 0
while input:
    if len(input) == 0:
        break
    elif len(input) == 1:
        cnt += 1
        break
    else:
        top = input.pop(0)
        nxt = input[0]
        if top == nxt:
            while input.remove(top):
                pass
        else:
            cnt += 1
        
print cnt
0