結果

問題 No.143 豆
ユーザー uchida_tuchida_t
提出日時 2023-04-28 13:21:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 1,000 ms
コード長 217 bytes
コンパイル時間 12,383 ms
コンパイル使用メモリ 429,020 KB
実行使用メモリ 51,836 KB
最終ジャッジ日時 2024-04-28 18:59:12
合計ジャッジ時間 19,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
51,568 KB
testcase_01 AC 328 ms
51,592 KB
testcase_02 AC 331 ms
51,836 KB
testcase_03 AC 330 ms
51,476 KB
testcase_04 AC 329 ms
51,656 KB
testcase_05 AC 331 ms
51,588 KB
testcase_06 AC 332 ms
51,736 KB
testcase_07 AC 331 ms
51,712 KB
testcase_08 AC 341 ms
51,652 KB
testcase_09 AC 333 ms
51,676 KB
testcase_10 AC 337 ms
51,784 KB
testcase_11 AC 332 ms
51,572 KB
testcase_12 AC 325 ms
51,676 KB
testcase_13 AC 337 ms
51,620 KB
testcase_14 AC 337 ms
51,780 KB
testcase_15 AC 335 ms
51,500 KB
testcase_16 AC 329 ms
51,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
	val a = readLine()!!.split(" ").map{it.toInt()}
	val b = readLine()!!.split(" ").map{it.toInt()}
	
	val amari = a[0] * a[1] - b.sum()
    if(amari < 0) println(-1) else println(amari)
}
0