結果

問題 No.112 ややこしい鶴亀算
ユーザー kmtrc130kmtrc130
提出日時 2017-05-15 16:26:48
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 3,371 ms
コンパイル使用メモリ 103,464 KB
実行使用メモリ 25,788 KB
最終ジャッジ日時 2023-10-14 13:13:27
合計ジャッジ時間 5,411 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
21,924 KB
testcase_01 WA -
testcase_02 AC 65 ms
23,772 KB
testcase_03 AC 64 ms
23,832 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 64 ms
21,704 KB
testcase_07 AC 64 ms
23,688 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 64 ms
23,748 KB
testcase_11 AC 64 ms
19,832 KB
testcase_12 AC 64 ms
21,664 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 65 ms
21,884 KB
testcase_16 AC 65 ms
25,788 KB
testcase_17 AC 64 ms
21,684 KB
testcase_18 AC 65 ms
21,780 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 64 ms
21,724 KB
testcase_22 AC 63 ms
21,784 KB
testcase_23 AC 65 ms
21,756 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Program
{
    static void Main(string[] args)
    {
        int N = int.Parse(Console.ReadLine());
        int[] a = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();

        int leg = 0,tsuru = 0, kame = 0;

        leg = a.Max() / 2;
        kame = leg - (N - 1);
        tsuru = N - kame - 1;

        leg = a.Min() / 2;
        kame = (kame < leg - (N - 1) ? leg - (N - 1) : kame);
        tsuru = (tsuru < N - (leg - (N - 1)) - 1 ? N - (leg - (N - 1)) - 1 : tsuru);

        Console.WriteLine("{0} {1}", tsuru, kame);
    }
}
0