結果
問題 |
No.985 Hadamard
|
ユーザー |
![]() |
提出日時 | 2020-02-09 16:03:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 154 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 43,228 KB |
最終ジャッジ日時 | 2024-10-01 06:02:22 |
合計ジャッジ時間 | 14,102 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 23 |
ソースコード
n = int(input()) s = 1 << n C = list(map(int, input().split())) L = [0] * s H = [0] * s for i in range(s): L[i], H[i] = map(int, input().split())