結果
問題 | No.29 パワーアップ |
ユーザー |
|
提出日時 | 2020-03-25 23:32:04 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 5,000 ms |
コード長 | 500 bytes |
コンパイル時間 | 1,011 ms |
コンパイル使用メモリ | 113,496 KB |
実行使用メモリ | 28,080 KB |
最終ジャッジ日時 | 2025-01-02 00:19:10 |
合計ジャッジ時間 | 2,333 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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); } }