結果

問題 No.143 豆
ユーザー uchida_tuchida_t
提出日時 2023-04-28 13:20:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 1,000 ms
コード長 221 bytes
コンパイル時間 14,277 ms
コンパイル使用メモリ 439,456 KB
実行使用メモリ 51,892 KB
最終ジャッジ日時 2024-04-28 18:58:22
合計ジャッジ時間 21,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
51,564 KB
testcase_01 AC 341 ms
51,656 KB
testcase_02 AC 322 ms
51,588 KB
testcase_03 AC 321 ms
51,640 KB
testcase_04 AC 318 ms
51,520 KB
testcase_05 AC 319 ms
51,732 KB
testcase_06 AC 319 ms
51,576 KB
testcase_07 AC 322 ms
51,892 KB
testcase_08 AC 319 ms
51,428 KB
testcase_09 AC 323 ms
51,856 KB
testcase_10 AC 322 ms
51,540 KB
testcase_11 AC 324 ms
51,472 KB
testcase_12 AC 318 ms
51,584 KB
testcase_13 AC 324 ms
51,824 KB
testcase_14 AC 322 ms
51,620 KB
testcase_15 AC 327 ms
51,632 KB
testcase_16 AC 319 ms
51,792 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.get(1) - b.sum()
    if(amari < 0) println(-1) else println(amari)
}
0