結果
| 問題 | No.29 パワーアップ | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-03-25 23:32:04 | 
| 言語 | C#(csc) (csc 3.9.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 28 ms / 5,000 ms | 
| コード長 | 500 bytes | 
| コンパイル時間 | 804 ms | 
| コンパイル使用メモリ | 112,856 KB | 
| 実行使用メモリ | 27,824 KB | 
| 最終ジャッジ日時 | 2025-10-24 21:13:40 | 
| 合計ジャッジ時間 | 2,123 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 22 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
public class P0029 {
    public static void Main() {
        var n = int.Parse(Console.ReadLine().Trim());
        var items = new int[10];
        for(int i=0; i<n; i++) {
            foreach(int v in Console.ReadLine().Trim().Split(' ').Select(int.Parse)) {
                items[v-1] += 1;
            }
        }
        var result = items.Select(i => i / 2).Sum();
        result += items.Select(i => i % 2).Sum() / 4;
        Console.WriteLine(result);
    }
}
            
            
            
        