結果

問題 No.2092 Conjugation
ユーザー ThetaTheta
提出日時 2022-10-11 16:29:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,668 KB
最終ジャッジ日時 2024-06-25 11:43:57
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 95 ms
13,184 KB
testcase_08 AC 133 ms
21,240 KB
testcase_09 AC 117 ms
18,576 KB
testcase_10 AC 121 ms
18,916 KB
testcase_11 AC 121 ms
19,296 KB
testcase_12 AC 116 ms
18,404 KB
testcase_13 AC 108 ms
16,832 KB
testcase_14 AC 105 ms
16,640 KB
testcase_15 AC 115 ms
17,888 KB
testcase_16 AC 144 ms
22,756 KB
testcase_17 AC 146 ms
20,720 KB
testcase_18 AC 152 ms
25,668 KB
testcase_19 AC 52 ms
11,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


def main():
    N = int(input())
    A = list(map(int, input().split()))
    A_counter = Counter(A)

    column_nums = []
    checked_row = 0

    for column in range(1, A[0]+1):
        column_nums.append(N-checked_row)
        if (ctr := A_counter.get(column)) is not None:
            checked_row += ctr

    print(*column_nums)


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