結果

問題 No.29 パワーアップ
ユーザー lrf141lrf141
提出日時 2017-03-25 16:44:38
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 868 ms / 5,000 ms
コード長 494 bytes
コンパイル時間 9,166 ms
コンパイル使用メモリ 266,780 KB
実行使用メモリ 65,504 KB
最終ジャッジ日時 2024-06-30 00:53:33
合計ジャッジ時間 29,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 823 ms
65,136 KB
testcase_01 AC 816 ms
65,080 KB
testcase_02 AC 819 ms
64,952 KB
testcase_03 AC 834 ms
65,176 KB
testcase_04 AC 803 ms
65,092 KB
testcase_05 AC 858 ms
65,204 KB
testcase_06 AC 821 ms
65,228 KB
testcase_07 AC 834 ms
64,912 KB
testcase_08 AC 820 ms
65,000 KB
testcase_09 AC 812 ms
65,256 KB
testcase_10 AC 868 ms
65,320 KB
testcase_11 AC 842 ms
65,268 KB
testcase_12 AC 799 ms
64,864 KB
testcase_13 AC 836 ms
65,344 KB
testcase_14 AC 837 ms
65,452 KB
testcase_15 AC 836 ms
65,504 KB
testcase_16 AC 858 ms
65,312 KB
testcase_17 AC 838 ms
65,160 KB
testcase_18 AC 846 ms
65,132 KB
testcase_19 AC 840 ms
65,052 KB
testcase_20 AC 832 ms
64,988 KB
testcase_21 AC 829 ms
64,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
import scala.collection.mutable.ListBuffer
object no29{
    def main(args:Array[String]):Unit={
        val scan:Scanner = new Scanner(System.in)
        val list:ListBuffer[Int] = ListBuffer.fill(10)(0)
        val n:Int = scan.nextInt
        for(i <- 1 to 3*n){
            list(scan.nextInt-1)+=1
        }
        var res:Int = 0
        for(i <- 1 to 10){
            res += list(i-1)/2
            list(i-1) %= 2
        }
        println(res+list.sum/4)
    }
}
0