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