結果
| 問題 | No.970 数列変換マシン |
| コンテスト | |
| ユーザー |
trineutron
|
| 提出日時 | 2020-01-18 03:43:07 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 152 ms / 2,000 ms |
| + 199µs | |
| コード長 | 107 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 24,440 KB |
| 最終ジャッジ日時 | 2026-07-30 09:56:57 |
| 合計ジャッジ時間 | 4,990 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
N = int(input()) y = list(map(int, input().split())) s = sum(y) x = [s - (N - 1) * a for a in y] print(*x)
trineutron