結果
問題 | No.2110 012 Matching |
ユーザー | kakel-san |
提出日時 | 2022-10-28 22:47:11 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 275 ms / 2,000 ms |
コード長 | 1,160 bytes |
コンパイル時間 | 2,273 ms |
コンパイル使用メモリ | 110,308 KB |
実行使用メモリ | 38,380 KB |
最終ジャッジ日時 | 2024-07-06 02:00:00 |
合計ジャッジ時間 | 4,431 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
25,060 KB |
testcase_01 | AC | 92 ms
32,996 KB |
testcase_02 | AC | 191 ms
34,204 KB |
testcase_03 | AC | 141 ms
34,428 KB |
testcase_04 | AC | 243 ms
38,380 KB |
testcase_05 | AC | 182 ms
33,928 KB |
testcase_06 | AC | 175 ms
35,760 KB |
testcase_07 | AC | 275 ms
37,280 KB |
testcase_08 | AC | 38 ms
27,400 KB |
testcase_09 | AC | 66 ms
31,888 KB |
testcase_10 | AC | 274 ms
35,228 KB |
testcase_11 | AC | 30 ms
23,348 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static long NN => long.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); static void Main() { Solve(); } static void Solve() { var t = NN; var res = new long[t]; for (var u = 0; u < t; ++u) { var c = NList; if (c[0] > 0 && c[2] > 0) { var eat = Math.Min(c[0], c[2]); res[u] += eat * 2; c[0] -= eat; c[2] -= eat; } if (c[2] > 1) { var eat = c[2] / 2; res[u] += eat; c[2] -= eat * 2; } if (c[1] > 0) { var eat = c[1] / 2; res[u] += eat * 2; c[1] -= eat * 2; } if (c[0] > 0 && c[1] > 0) { ++res[u]; } } WriteLine(string.Join("\n", res)); } }