結果

問題 No.2092 Conjugation
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-07 22:05:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 100,536 KB
最終ジャッジ日時 2024-06-12 18:35:59
合計ジャッジ時間 2,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
52,216 KB
testcase_01 AC 30 ms
53,676 KB
testcase_02 AC 29 ms
53,232 KB
testcase_03 AC 30 ms
52,504 KB
testcase_04 AC 30 ms
53,296 KB
testcase_05 AC 30 ms
52,476 KB
testcase_06 AC 29 ms
53,372 KB
testcase_07 AC 57 ms
84,592 KB
testcase_08 AC 87 ms
93,696 KB
testcase_09 AC 71 ms
87,124 KB
testcase_10 AC 79 ms
88,300 KB
testcase_11 AC 71 ms
88,204 KB
testcase_12 AC 74 ms
86,784 KB
testcase_13 AC 65 ms
84,684 KB
testcase_14 AC 69 ms
84,736 KB
testcase_15 AC 72 ms
86,308 KB
testcase_16 AC 88 ms
98,048 KB
testcase_17 AC 80 ms
99,556 KB
testcase_18 AC 77 ms
100,536 KB
testcase_19 AC 44 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))[::-1]
m = A[-1]
ans = []
now = 0
for i in range(m):
    while A[now] <= i:
        now += 1
    ans.append(n-now)
print(*ans)
0