結果

問題 No.29 パワーアップ
ユーザー curryudon08curryudon08
提出日時 2020-06-22 16:35:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 114,448 KB
実行使用メモリ 27,524 KB
最終ジャッジ日時 2024-07-03 18:42:00
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
27,396 KB
testcase_01 AC 30 ms
25,208 KB
testcase_02 AC 31 ms
25,592 KB
testcase_03 AC 31 ms
25,336 KB
testcase_04 AC 31 ms
25,208 KB
testcase_05 AC 31 ms
25,344 KB
testcase_06 AC 31 ms
25,592 KB
testcase_07 AC 31 ms
25,264 KB
testcase_08 AC 30 ms
25,340 KB
testcase_09 AC 30 ms
25,208 KB
testcase_10 AC 30 ms
23,348 KB
testcase_11 AC 31 ms
25,596 KB
testcase_12 AC 31 ms
25,340 KB
testcase_13 AC 31 ms
25,724 KB
testcase_14 AC 32 ms
27,524 KB
testcase_15 AC 31 ms
25,360 KB
testcase_16 AC 33 ms
25,464 KB
testcase_17 AC 31 ms
25,592 KB
testcase_18 AC 31 ms
25,264 KB
testcase_19 AC 32 ms
25,468 KB
testcase_20 AC 31 ms
25,460 KB
testcase_21 AC 30 ms
27,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;

namespace _0029
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var d = new Dictionary<int,int>();

            var p = 0;
            for(var i = 0; i < n; i++){
                var t = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();
                for(var j = 0; j < 3; j++){
                    var m = t[j];
                    if(d.ContainsKey(m)){
                        d[m] += 1;
                        if(d[m] == 2){
                            p += 1;
                            d[m] = 0;
                        }
                    }else{
                        d.Add(m,1);
                    }
                }
            }

            var s = d.Sum(x => x.Value);
            Console.WriteLine(s / 4 + p);
        }
    }
}
0