結果

問題 No.182 新規性の虜
ユーザー mokraimokrai
提出日時 2017-10-22 22:51:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-11-21 13:57:05
合計ジャッジ時間 49,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
27,248 KB
testcase_02 AC 28 ms
28,032 KB
testcase_03 AC 28 ms
17,572 KB
testcase_04 AC 28 ms
27,904 KB
testcase_05 AC 28 ms
17,440 KB
testcase_06 AC 28 ms
24,056 KB
testcase_07 AC 28 ms
17,568 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 28 ms
10,752 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 28 ms
10,624 KB
testcase_24 TLE -
testcase_25 AC 50 ms
12,616 KB
testcase_26 AC 2,062 ms
11,904 KB
testcase_27 AC 29 ms
10,624 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    nums = [int(i) for i in input().split()]
    sorted_nums = sorted(nums)
    #print(sorted_nums)
    print(get_new_num_count(sorted_nums))

def get_new_num_count(sorted_list):
    ans = 0
    for num in sorted_list:
        count = sorted_list.count(num)
        if count == 1:
            ans += 1
        else:
            return ans
    return ans


if __name__ == '__main__':
    main()
0