結果

問題 No.143 豆
ユーザー uchida_tuchida_t
提出日時 2023-04-28 13:20:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 1,000 ms
コード長 221 bytes
コンパイル時間 14,043 ms
コンパイル使用メモリ 441,936 KB
実行使用メモリ 51,988 KB
最終ジャッジ日時 2024-11-17 13:53:59
合計ジャッジ時間 19,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
51,656 KB
testcase_01 AC 318 ms
51,700 KB
testcase_02 AC 318 ms
51,600 KB
testcase_03 AC 319 ms
51,840 KB
testcase_04 AC 317 ms
51,396 KB
testcase_05 AC 314 ms
51,688 KB
testcase_06 AC 316 ms
51,692 KB
testcase_07 AC 322 ms
51,772 KB
testcase_08 AC 321 ms
51,588 KB
testcase_09 AC 323 ms
51,568 KB
testcase_10 AC 318 ms
51,632 KB
testcase_11 AC 321 ms
51,612 KB
testcase_12 AC 316 ms
51,672 KB
testcase_13 AC 322 ms
51,588 KB
testcase_14 AC 321 ms
51,704 KB
testcase_15 AC 328 ms
51,988 KB
testcase_16 AC 316 ms
51,544 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