結果

問題 No.2092 Conjugation
ユーザー hiragnhiragn
提出日時 2022-11-30 13:50:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,356 KB
最終ジャッジ日時 2024-10-07 09:08:47
合計ジャッジ時間 2,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 83 ms
13,100 KB
testcase_08 AC 109 ms
18,868 KB
testcase_09 AC 97 ms
17,204 KB
testcase_10 AC 101 ms
17,608 KB
testcase_11 AC 101 ms
17,956 KB
testcase_12 AC 97 ms
17,304 KB
testcase_13 AC 92 ms
16,364 KB
testcase_14 AC 90 ms
16,360 KB
testcase_15 AC 97 ms
17,096 KB
testcase_16 AC 117 ms
20,080 KB
testcase_17 AC 124 ms
20,608 KB
testcase_18 AC 122 ms
21,356 KB
testcase_19 AC 48 ms
12,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    arr = list(map(int, input().split()))
    if n == 1:
        exit(print(*arr))

    mx = max(arr)
    ans = [0] * (mx + 1)
    for a in arr:
        ans[a] += 1
    for i in range(mx - 1, 0, -1):
        ans[i] += ans[i + 1]
    print(*ans[1:])


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