結果
| 問題 |
No.2092 Conjugation
|
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
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)
rlangevin