結果
| 問題 |
No.369 足し間違い
|
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-05-14 06:30:34 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 110 bytes |
| コンパイル時間 | 77 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,264 KB |
| 最終ジャッジ日時 | 2024-09-16 05:16:42 |
| 合計ジャッジ時間 | 794 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 5 |
ソースコード
N=int(input ())
A=[int(i) for i in range(N)]
v=int(input())
S=0
for i in range (N):
S+=A[i]
S-=v
print (S)
rocoder