結果

問題 No.549 素材合成システム
ユーザー 💕💖💞💕💖💞
提出日時 2017-09-12 00:01:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 12,183 ms
コンパイル使用メモリ 429,444 KB
実行使用メモリ 74,080 KB
最終ジャッジ日時 2024-04-30 15:53:04
合計ジャッジ時間 35,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
56,908 KB
testcase_01 AC 317 ms
56,944 KB
testcase_02 AC 315 ms
56,848 KB
testcase_03 AC 314 ms
56,924 KB
testcase_04 AC 318 ms
56,844 KB
testcase_05 AC 321 ms
56,840 KB
testcase_06 AC 316 ms
56,964 KB
testcase_07 AC 536 ms
73,960 KB
testcase_08 AC 534 ms
74,036 KB
testcase_09 AC 531 ms
74,020 KB
testcase_10 AC 536 ms
74,080 KB
testcase_11 AC 534 ms
73,796 KB
testcase_12 AC 534 ms
73,940 KB
testcase_13 AC 531 ms
74,076 KB
testcase_14 AC 531 ms
73,888 KB
testcase_15 AC 537 ms
73,984 KB
testcase_16 AC 538 ms
73,976 KB
testcase_17 AC 518 ms
67,616 KB
testcase_18 AC 511 ms
65,772 KB
testcase_19 AC 518 ms
67,836 KB
testcase_20 AC 510 ms
65,780 KB
testcase_21 AC 534 ms
71,776 KB
testcase_22 AC 528 ms
71,788 KB
testcase_23 AC 537 ms
73,836 KB
testcase_24 AC 532 ms
71,784 KB
testcase_25 AC 534 ms
71,796 KB
testcase_26 AC 540 ms
73,844 KB
testcase_27 AC 532 ms
71,792 KB
testcase_28 AC 314 ms
56,856 KB
testcase_29 AC 315 ms
56,856 KB
testcase_30 AC 315 ms
56,860 KB
testcase_31 AC 514 ms
69,748 KB
testcase_32 AC 517 ms
69,748 KB
testcase_33 AC 515 ms
69,852 KB
testcase_34 AC 513 ms
69,760 KB
testcase_35 AC 541 ms
73,964 KB
testcase_36 AC 516 ms
69,896 KB
testcase_37 AC 521 ms
69,792 KB
testcase_38 AC 321 ms
56,928 KB
testcase_39 AC 321 ms
56,920 KB
testcase_40 AC 522 ms
67,812 KB
testcase_41 AC 495 ms
63,652 KB
testcase_42 AC 364 ms
57,232 KB
testcase_43 AC 438 ms
59,408 KB
testcase_44 AC 401 ms
57,392 KB
testcase_45 AC 442 ms
61,448 KB
testcase_46 AC 430 ms
59,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^
Main.kt:8:14: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
  println(max!! + n)
             ^

ソースコード

diff #

fun main(args: Array<String>){
  readLine()
  val ss = readLine()!!.split(" ").map { it.toInt() }.toMutableList()
  val max = ss.max()
  val maxindex = ss.indexOf(max)
  ss.removeAt(maxindex)
  val n = ss.map { it/2 }.reduce { y,x -> y+x }
  println(max!! + n)
}
0