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