結果

問題 No.2092 Conjugation
ユーザー rlangevinrlangevin
提出日時 2023-05-08 23:22:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 100,280 KB
最終ジャッジ日時 2024-11-25 12:26:23
合計ジャッジ時間 3,689 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,404 KB
testcase_01 AC 33 ms
51,944 KB
testcase_02 AC 35 ms
52,956 KB
testcase_03 AC 34 ms
52,248 KB
testcase_04 AC 36 ms
53,228 KB
testcase_05 AC 33 ms
52,480 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 61 ms
84,608 KB
testcase_08 AC 86 ms
93,008 KB
testcase_09 AC 72 ms
86,932 KB
testcase_10 AC 75 ms
88,216 KB
testcase_11 AC 77 ms
88,648 KB
testcase_12 AC 71 ms
86,588 KB
testcase_13 AC 68 ms
84,848 KB
testcase_14 AC 68 ms
84,220 KB
testcase_15 AC 73 ms
86,116 KB
testcase_16 AC 83 ms
97,716 KB
testcase_17 AC 82 ms
98,656 KB
testcase_18 AC 84 ms
100,280 KB
testcase_19 AC 49 ms
74,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = []
for i in range(A[0]):
    while A[-1] < i + 1:
        A.pop()
    ans.append(len(A))
    
print(*ans)    
0