結果
| 問題 |
No.2092 Conjugation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-10 12:18:14 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 208 bytes |
| コンパイル時間 | 144 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 163,504 KB |
| 最終ジャッジ日時 | 2024-07-23 14:47:57 |
| 合計ジャッジ時間 | 12,170 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 1 |
| other | AC * 2 WA * 1 RE * 15 |
ソースコード
import numpy as np
n = int(input())
A = list(map(int,input().split(' ')))
field = np.zeros((max(A),n),dtype = int)
for i in range(len(field)):
field[i,:A[i]] = 1
print(' '.join(list(map(str,sum(field)))))