結果

問題 No.143 豆
ユーザー FoltaFolta
提出日時 2019-05-21 10:28:03
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 9,588 ms
コンパイル使用メモリ 430,156 KB
実行使用メモリ 57,256 KB
最終ジャッジ日時 2024-04-30 20:43:27
合計ジャッジ時間 15,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
56,868 KB
testcase_01 AC 265 ms
57,176 KB
testcase_02 AC 263 ms
57,096 KB
testcase_03 AC 274 ms
56,988 KB
testcase_04 AC 271 ms
57,108 KB
testcase_05 AC 267 ms
57,012 KB
testcase_06 AC 275 ms
56,992 KB
testcase_07 AC 282 ms
57,104 KB
testcase_08 AC 268 ms
57,032 KB
testcase_09 WA -
testcase_10 AC 278 ms
57,028 KB
testcase_11 AC 270 ms
57,104 KB
testcase_12 AC 273 ms
57,088 KB
testcase_13 AC 272 ms
57,044 KB
testcase_14 AC 279 ms
56,996 KB
testcase_15 AC 284 ms
57,020 KB
testcase_16 AC 271 ms
56,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val knf = readLine()!!.split(" ").map(String::toInt)
	val a = readLine()!!.split(" ").map(String::toInt)    
    
    val ans = (knf[0] * knf[1]) - a.sum()
    if(ans > 0){
        println(ans)
    }else{
        println("-1")
    }
}
0