結果
問題 | No.161 制限ジャンケン |
ユーザー | mban |
提出日時 | 2016-12-31 08:52:46 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 5,000 ms |
コード長 | 1,133 bytes |
コンパイル時間 | 2,405 ms |
コンパイル使用メモリ | 109,132 KB |
実行使用メモリ | 26,388 KB |
最終ジャッジ日時 | 2024-11-30 05:07:26 |
合計ジャッジ時間 | 3,282 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,220 KB |
testcase_01 | AC | 28 ms
24,212 KB |
testcase_02 | AC | 29 ms
24,216 KB |
testcase_03 | AC | 28 ms
24,220 KB |
testcase_04 | AC | 29 ms
23,960 KB |
testcase_05 | AC | 28 ms
22,196 KB |
testcase_06 | AC | 28 ms
24,084 KB |
testcase_07 | AC | 29 ms
26,384 KB |
testcase_08 | AC | 28 ms
26,380 KB |
testcase_09 | AC | 28 ms
24,084 KB |
testcase_10 | AC | 28 ms
23,964 KB |
testcase_11 | AC | 28 ms
22,448 KB |
testcase_12 | AC | 27 ms
22,196 KB |
testcase_13 | AC | 29 ms
23,988 KB |
testcase_14 | AC | 28 ms
24,216 KB |
testcase_15 | AC | 29 ms
26,264 KB |
testcase_16 | AC | 29 ms
26,388 KB |
testcase_17 | AC | 28 ms
24,216 KB |
testcase_18 | AC | 29 ms
26,268 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; class Magatro { static void Main() { int G, C, P; string[] s = Console.ReadLine().Split(' '); G = int.Parse(s[0]); C = int.Parse(s[1]); P = int.Parse(s[2]); string S = Console.ReadLine(); Dictionary<char, int> cnt = new Dictionary<char, int>(); cnt.Add('G', 0); cnt.Add('C', 0); cnt.Add('P', 0); for(int i = 0; i < S.Length; i++) { cnt[S[i]]++; } int ans = 0; int c = 0; int GG= Math.Min(G, cnt['C']); c += GG; G -= GG; cnt['C'] -= GG; GG = Math.Min(P, cnt['G']); c += GG; cnt['G'] -= GG; P -= GG; GG = Math.Min(C, cnt['P']); c += GG; cnt['P'] -= GG; C -= GG; ans += 3 * c; ans += Math.Min(G, cnt['G']) + Math.Min(C, cnt['C']) + Math.Min(P, cnt['P']); Console.WriteLine(ans); } }