結果

問題 No.2092 Conjugation
ユーザー pitPpitP
提出日時 2022-10-08 08:02:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 100,880 KB
最終ジャッジ日時 2024-06-22 05:30:25
合計ジャッジ時間 3,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,600 KB
testcase_01 AC 30 ms
52,392 KB
testcase_02 AC 31 ms
52,988 KB
testcase_03 AC 31 ms
53,020 KB
testcase_04 AC 32 ms
52,396 KB
testcase_05 AC 32 ms
52,992 KB
testcase_06 AC 32 ms
52,720 KB
testcase_07 AC 62 ms
85,136 KB
testcase_08 AC 77 ms
93,692 KB
testcase_09 AC 67 ms
88,152 KB
testcase_10 AC 68 ms
88,908 KB
testcase_11 AC 69 ms
89,004 KB
testcase_12 AC 66 ms
87,088 KB
testcase_13 AC 64 ms
85,564 KB
testcase_14 AC 64 ms
85,428 KB
testcase_15 AC 66 ms
86,840 KB
testcase_16 AC 80 ms
98,436 KB
testcase_17 AC 80 ms
99,856 KB
testcase_18 AC 82 ms
100,880 KB
testcase_19 AC 51 ms
76,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

imos = [0 for _ in range(A[0] + 5)]
for i in range(N):
	imos[1] += 1
	imos[A[i]+1] -= 1

ans = []
wa = 0
for i in range(1,A[0]+1):
	wa += imos[i]
	ans.append(wa)
print(*ans)
0