結果

問題 No.29 パワーアップ
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-09-29 10:02:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 12,459 ms
コンパイル使用メモリ 440,080 KB
実行使用メモリ 55,248 KB
最終ジャッジ日時 2024-11-20 16:53:50
合計ジャッジ時間 20,829 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
54,992 KB
testcase_01 AC 325 ms
54,956 KB
testcase_02 AC 325 ms
55,000 KB
testcase_03 AC 328 ms
54,892 KB
testcase_04 AC 327 ms
54,784 KB
testcase_05 AC 338 ms
54,888 KB
testcase_06 AC 335 ms
55,040 KB
testcase_07 AC 328 ms
55,000 KB
testcase_08 AC 327 ms
54,896 KB
testcase_09 AC 329 ms
55,124 KB
testcase_10 AC 335 ms
54,956 KB
testcase_11 AC 336 ms
55,080 KB
testcase_12 AC 327 ms
55,248 KB
testcase_13 AC 333 ms
55,168 KB
testcase_14 AC 333 ms
54,880 KB
testcase_15 AC 335 ms
55,184 KB
testcase_16 AC 334 ms
55,196 KB
testcase_17 AC 330 ms
54,808 KB
testcase_18 AC 335 ms
54,832 KB
testcase_19 AC 332 ms
55,028 KB
testcase_20 AC 325 ms
55,020 KB
testcase_21 AC 324 ms
55,124 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
	val N = readLine()!!.toInt()
	val dic = Array(10) { 0 }
	var cnt = 0

	for (i in 0 until N) {
		val abc = readLine()!!.split(" ").map { it.toInt() }
		for (v in abc) {
			dic[v - 1] += 1
		}
	}

	for (i in 0 until dic.size) {
		while (dic[i] >= 2) {
			dic[i] -= 2
			cnt += 1
		}
	}

	cnt += dic.sum() / 4
	println(cnt)
}
0