結果
| 問題 | No.369 足し間違い |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-02-25 16:21:09 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 104 bytes |
| 記録 | |
| コンパイル時間 | 289 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 21,116 KB |
| 最終ジャッジ日時 | 2026-07-25 04:06:31 |
| 合計ジャッジ時間 | 3,310 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 5 |
ソースコード
N = input() num_list = list(map(int, input().split())) v = int(input().split()) print(sum(num_list) - v)