結果

問題 No.143 豆
ユーザー FoltaFolta
提出日時 2019-05-21 10:28:03
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 11,067 ms
コンパイル使用メモリ 423,708 KB
実行使用メモリ 57,212 KB
最終ジャッジ日時 2024-11-20 18:33:52
合計ジャッジ時間 15,817 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
56,908 KB
testcase_01 AC 286 ms
57,116 KB
testcase_02 AC 278 ms
57,024 KB
testcase_03 AC 272 ms
57,088 KB
testcase_04 AC 283 ms
56,968 KB
testcase_05 AC 292 ms
57,084 KB
testcase_06 AC 284 ms
57,116 KB
testcase_07 AC 280 ms
57,048 KB
testcase_08 AC 279 ms
57,132 KB
testcase_09 WA -
testcase_10 AC 278 ms
57,028 KB
testcase_11 AC 271 ms
57,088 KB
testcase_12 AC 319 ms
57,212 KB
testcase_13 AC 301 ms
57,100 KB
testcase_14 AC 290 ms
57,160 KB
testcase_15 AC 284 ms
57,004 KB
testcase_16 AC 275 ms
56,860 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