結果
| 問題 | No.970 数列変換マシン |
| コンテスト | |
| ユーザー |
trineutron
|
| 提出日時 | 2020-01-18 03:42:04 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 101 bytes |
| 記録 | |
| コンパイル時間 | 279 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 24,560 KB |
| 最終ジャッジ日時 | 2026-07-30 09:55:49 |
| 合計ジャッジ時間 | 4,855 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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