結果

問題 No.821 Making Integers
ユーザー maimai
提出日時 2019-04-26 22:08:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 10,466 ms
コンパイル使用メモリ 421,904 KB
実行使用メモリ 51,128 KB
最終ジャッジ日時 2024-11-20 18:08:55
合計ジャッジ時間 13,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
51,012 KB
testcase_01 AC 336 ms
51,052 KB
testcase_02 AC 322 ms
50,884 KB
testcase_03 AC 319 ms
50,940 KB
testcase_04 AC 313 ms
50,972 KB
testcase_05 AC 320 ms
50,904 KB
testcase_06 AC 327 ms
51,024 KB
testcase_07 AC 337 ms
50,988 KB
testcase_08 AC 323 ms
51,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
val scanner = Scanner(System.`in`)

fun sum(be:Long, la:Long): Long = (la-be+1)*(be+la)/2

fun main(){
    var n = scanner.nextLong()
    var k = scanner.nextLong()
    
    val total = sum(1,n)
    val mi = sum(1, n-k)-sum(n-k+1, n)
    
    val ans = (total-mi)/2+1
    println(ans)
}
0