結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
56,768 KB
testcase_01 AC 324 ms
56,748 KB
testcase_02 AC 325 ms
56,796 KB
testcase_03 AC 326 ms
56,820 KB
testcase_04 AC 326 ms
56,860 KB
testcase_05 AC 328 ms
56,816 KB
testcase_06 AC 325 ms
56,732 KB
testcase_07 AC 545 ms
73,792 KB
testcase_08 AC 540 ms
73,864 KB
testcase_09 AC 558 ms
73,928 KB
testcase_10 AC 544 ms
73,924 KB
testcase_11 AC 543 ms
73,932 KB
testcase_12 AC 540 ms
73,724 KB
testcase_13 AC 551 ms
73,788 KB
testcase_14 AC 541 ms
73,816 KB
testcase_15 AC 543 ms
73,856 KB
testcase_16 AC 549 ms
74,000 KB
testcase_17 AC 522 ms
67,652 KB
testcase_18 AC 515 ms
65,492 KB
testcase_19 AC 516 ms
67,556 KB
testcase_20 AC 519 ms
65,476 KB
testcase_21 AC 541 ms
71,868 KB
testcase_22 AC 546 ms
71,780 KB
testcase_23 AC 541 ms
73,724 KB
testcase_24 AC 535 ms
71,884 KB
testcase_25 AC 536 ms
71,788 KB
testcase_26 AC 543 ms
73,868 KB
testcase_27 AC 540 ms
71,716 KB
testcase_28 AC 321 ms
56,772 KB
testcase_29 AC 322 ms
56,860 KB
testcase_30 AC 320 ms
56,872 KB
testcase_31 AC 524 ms
69,724 KB
testcase_32 AC 524 ms
69,920 KB
testcase_33 AC 532 ms
69,696 KB
testcase_34 AC 530 ms
69,820 KB
testcase_35 AC 546 ms
73,912 KB
testcase_36 AC 522 ms
69,844 KB
testcase_37 AC 525 ms
69,852 KB
testcase_38 AC 325 ms
56,760 KB
testcase_39 AC 322 ms
56,856 KB
testcase_40 AC 530 ms
67,572 KB
testcase_41 AC 501 ms
63,452 KB
testcase_42 AC 366 ms
57,188 KB
testcase_43 AC 441 ms
59,392 KB
testcase_44 AC 407 ms
57,392 KB
testcase_45 AC 454 ms
61,324 KB
testcase_46 AC 433 ms
59,256 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