結果

問題 No.29 パワーアップ
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-07-28 12:01:04
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 103,680 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-07-05 18:21:38
合計ジャッジ時間 2,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,560 KB
testcase_01 AC 28 ms
18,688 KB
testcase_02 AC 28 ms
18,560 KB
testcase_03 AC 28 ms
18,560 KB
testcase_04 AC 28 ms
18,560 KB
testcase_05 AC 28 ms
18,560 KB
testcase_06 AC 28 ms
18,560 KB
testcase_07 WA -
testcase_08 AC 28 ms
18,688 KB
testcase_09 AC 28 ms
18,688 KB
testcase_10 AC 28 ms
18,560 KB
testcase_11 AC 29 ms
18,688 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 27 ms
18,688 KB
testcase_15 AC 29 ms
18,560 KB
testcase_16 AC 28 ms
18,560 KB
testcase_17 AC 28 ms
18,688 KB
testcase_18 AC 29 ms
18,560 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 29 ms
18,688 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.Collections.Generic;

class No29{
    static void Main(){
        var a=Int32.Parse(Console.ReadLine());
        List<string> list=new List<string>();
        for(int i=0;i<a;++i){
            var b=Console.ReadLine().Split(' ');
            list.Add(b[0]);
            list.Add(b[1]);
            list.Add(b[2]);
        }
        list.Sort();
        var c=list.Count;
        var d=0;
        var e=0;
        for(int i=0;i<c-1;++i){
            if(list[i]==list[i+1]){
                d++;
                i++;
                if(i==c-3)e++;
            }else{
                e++;
                if(i==c-2)e++;
            }
        }
        
        Console.WriteLine(d+e/4);
    }
}
0