結果

問題 No.112 ややこしい鶴亀算
ユーザー kmtrc130kmtrc130
提出日時 2017-05-15 16:39:05
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 101,324 KB
実行使用メモリ 23,836 KB
最終ジャッジ日時 2023-10-14 13:13:32
合計ジャッジ時間 5,200 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
21,864 KB
testcase_01 AC 65 ms
21,792 KB
testcase_02 AC 63 ms
21,700 KB
testcase_03 AC 64 ms
23,684 KB
testcase_04 AC 64 ms
21,696 KB
testcase_05 WA -
testcase_06 AC 65 ms
21,876 KB
testcase_07 AC 65 ms
21,868 KB
testcase_08 WA -
testcase_09 AC 64 ms
23,776 KB
testcase_10 AC 65 ms
21,716 KB
testcase_11 AC 67 ms
21,672 KB
testcase_12 AC 66 ms
23,788 KB
testcase_13 WA -
testcase_14 AC 67 ms
21,724 KB
testcase_15 AC 64 ms
21,704 KB
testcase_16 AC 64 ms
23,836 KB
testcase_17 AC 64 ms
21,744 KB
testcase_18 AC 64 ms
23,708 KB
testcase_19 WA -
testcase_20 AC 64 ms
21,720 KB
testcase_21 AC 64 ms
21,776 KB
testcase_22 AC 64 ms
23,788 KB
testcase_23 AC 66 ms
23,784 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);

        leg = a.Min() / 2;
        if (kame < leg - (N - 1))
        {
            kame = leg - (N - 1);
        }
        tsuru = N - kame;

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