Deskripsi
Kurangi angka P berikutnya dari angka N. Angka N berikutnya adalah N +1.
Lihatlah contoh-contoh untuk mendapatkan apa yang saya maksud.
Contoh:
Input: N=2,P=3
Calculate: n - (n+1) - (n+2) - (n+3) //Ending with 3, because P=3
Calculate: 2 - 2+1 - 2+2 - 2+3 //Replacing N with 2 from Input
Calculate: 2 - 3 - 4 - 5
Output: -10
Input: N=100,P=5
Calculate: n - (n+1) - (n+2) - (n+3) - (n+4) - (n+5)
Calculate: 100- 101 - 102 - 103 - 104 - 105
Output: -415
Input: N=42,P=0
Calculate: n
Calculate: 42
Output: 42
Input: N=0,P=3
Calculate: n - (n+1) - (n+2) - (n+3)
Calculate: 0 - 1 - 2 - 3
Output: -6
Input: N=0,P=0
Calulate: n
Calculate: 0
Output: 0
Memasukkan:
N : Integer, positif, negatif atau 0
P : Integer, positif atau 0, tidak negatif
Keluaran:
Integer atau String, memimpin 0 diizinkan, mengikuti baris baru diizinkan
Aturan:
- Tidak ada celah
- Ini adalah kode-golf, jadi kode terpendek dalam byte menang
- Input dan Output harus seperti yang dijelaskan
Input: N=0,P=3
contoh, ekspansi Anda memiliki beberapa negatif ganda
N * (P-1)
. Itu hampir definisi dari sepele .