結果
問題 | No.143 豆 |
ユーザー | rutilicus |
提出日時 | 2020-08-30 21:23:29 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 328 ms / 1,000 ms |
コード長 | 347 bytes |
コンパイル時間 | 11,931 ms |
コンパイル使用メモリ | 429,684 KB |
実行使用メモリ | 57,156 KB |
最終ジャッジ日時 | 2024-07-23 11:36:52 |
合計ジャッジ時間 | 18,327 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 307 ms
56,800 KB |
testcase_01 | AC | 311 ms
56,884 KB |
testcase_02 | AC | 304 ms
56,772 KB |
testcase_03 | AC | 310 ms
56,824 KB |
testcase_04 | AC | 308 ms
56,988 KB |
testcase_05 | AC | 318 ms
56,960 KB |
testcase_06 | AC | 308 ms
56,900 KB |
testcase_07 | AC | 312 ms
56,996 KB |
testcase_08 | AC | 307 ms
57,108 KB |
testcase_09 | AC | 304 ms
57,156 KB |
testcase_10 | AC | 309 ms
56,952 KB |
testcase_11 | AC | 306 ms
56,856 KB |
testcase_12 | AC | 302 ms
56,868 KB |
testcase_13 | AC | 304 ms
57,088 KB |
testcase_14 | AC | 300 ms
56,868 KB |
testcase_15 | AC | 328 ms
57,128 KB |
testcase_16 | AC | 305 ms
56,988 KB |
コンパイルメッセージ
Main.kt:12:13: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator. builder.appendln(max(rem, -1)) ^
ソースコード
import kotlin.math.max fun main() { val builder = StringBuilder() val (k, n, _) = readInputLine().split(" ").map { it.toInt() } var rem = k * n readInputLine().split(" ").forEach { rem -= it.toInt() } builder.appendln(max(rem, -1)) print(builder.toString()) } fun readInputLine(): String { return readLine()!! }