結果
問題 | No.35 タイパー高橋 |
ユーザー | バカらっく |
提出日時 | 2019-09-07 19:04:28 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 440 ms / 5,000 ms |
コード長 | 384 bytes |
コンパイル時間 | 12,867 ms |
コンパイル使用メモリ | 440,508 KB |
実行使用メモリ | 61,096 KB |
最終ジャッジ日時 | 2024-06-27 01:25:00 |
合計ジャッジ時間 | 14,538 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 432 ms
60,832 KB |
testcase_01 | AC | 437 ms
61,040 KB |
testcase_02 | AC | 439 ms
60,956 KB |
testcase_03 | AC | 440 ms
61,096 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^
ソースコード
fun main(arr:Array<String>) { val inputCount = readLine()!!.toInt() var tadasiku = 0 var nogasu = 0 (1..inputCount).forEach { val inpt = readLine()!!.split(" ") val saidai = inpt[0].toInt() * 12 / 1000 tadasiku += Math.min(inpt[1].length , saidai) nogasu += Math.max(inpt[1].length - saidai, 0) } println("$tadasiku $nogasu") }