結果

問題 No.143 豆
ユーザー uchida_tuchida_t
提出日時 2023-04-28 13:21:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 259 ms / 1,000 ms
コード長 217 bytes
コンパイル時間 10,310 ms
コンパイル使用メモリ 434,996 KB
実行使用メモリ 51,868 KB
最終ジャッジ日時 2024-11-17 13:54:35
合計ジャッジ時間 15,724 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
51,768 KB
testcase_01 AC 251 ms
51,596 KB
testcase_02 AC 258 ms
51,848 KB
testcase_03 AC 252 ms
51,552 KB
testcase_04 AC 253 ms
51,452 KB
testcase_05 AC 253 ms
51,868 KB
testcase_06 AC 256 ms
51,728 KB
testcase_07 AC 259 ms
51,700 KB
testcase_08 AC 253 ms
51,524 KB
testcase_09 AC 255 ms
51,580 KB
testcase_10 AC 253 ms
51,808 KB
testcase_11 AC 254 ms
51,864 KB
testcase_12 AC 256 ms
51,656 KB
testcase_13 AC 253 ms
51,480 KB
testcase_14 AC 256 ms
51,504 KB
testcase_15 AC 252 ms
51,672 KB
testcase_16 AC 250 ms
51,584 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