結果
| 問題 |
No.970 数列変換マシン
|
| コンテスト | |
| ユーザー |
trineutron
|
| 提出日時 | 2020-01-18 03:42:04 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 101 bytes |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 20,832 KB |
| 最終ジャッジ日時 | 2024-06-26 07:52:38 |
| 合計ジャッジ時間 | 3,235 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 3 WA * 19 |
ソースコード
N = int(input()) y = list(map(int, input().split())) s = sum(y) x = [s - 2 * a for a in y] print(*x)
trineutron