結果

問題 No.29 パワーアップ
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-09-29 00:03:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 12,279 ms
コンパイル使用メモリ 430,584 KB
実行使用メモリ 51,948 KB
最終ジャッジ日時 2024-11-20 16:53:17
合計ジャッジ時間 19,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
51,588 KB
testcase_01 AC 319 ms
51,508 KB
testcase_02 AC 324 ms
51,604 KB
testcase_03 AC 321 ms
51,868 KB
testcase_04 AC 315 ms
51,496 KB
testcase_05 AC 327 ms
51,712 KB
testcase_06 AC 325 ms
51,812 KB
testcase_07 AC 324 ms
51,596 KB
testcase_08 AC 320 ms
51,720 KB
testcase_09 AC 322 ms
51,660 KB
testcase_10 AC 331 ms
51,708 KB
testcase_11 AC 335 ms
51,912 KB
testcase_12 AC 324 ms
51,944 KB
testcase_13 AC 326 ms
51,680 KB
testcase_14 AC 327 ms
51,656 KB
testcase_15 AC 328 ms
51,948 KB
testcase_16 AC 331 ms
51,840 KB
testcase_17 AC 329 ms
51,484 KB
testcase_18 AC 325 ms
51,716 KB
testcase_19 AC 325 ms
51,948 KB
testcase_20 AC 315 ms
51,900 KB
testcase_21 AC 315 ms
51,856 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 = mutableSetOf<Int>()
	var cnt = 0

	for (i in 0 until N) {
		val abc = readLine()!!.split(" ").map { it.toInt() }
		abc.forEach { v ->
			if (v !in dic) {
				dic.add(v)
			} else {
				cnt += 1
				dic.remove(v)
			}
		}
	}
	cnt += dic.size / 4
	println(cnt)
}
0