結果

問題 No.63 ポッキーゲーム
ユーザー cccccc
提出日時 2022-07-17 21:40:34
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 14,036 ms
コンパイル使用メモリ 167,660 KB
実行使用メモリ 185,532 KB
最終ジャッジ日時 2024-06-29 22:22:57
合計ジャッジ時間 17,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,208 KB
testcase_01 AC 55 ms
30,080 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 51 ms
30,196 KB
testcase_05 AC 53 ms
30,336 KB
testcase_06 WA -
testcase_07 AC 54 ms
30,848 KB
testcase_08 AC 54 ms
30,720 KB
testcase_09 AC 55 ms
30,848 KB
testcase_10 AC 59 ms
30,592 KB
testcase_11 AC 418 ms
30,592 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 71 ms
185,532 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Linq;

class Program
{
    static void Main()
    {
        var inp = Console.ReadLine().Split().Select(int.Parse).ToArray();
        int lng = inp[0];
        int get = inp[1];
        int ans =  0, cnt = 0;

        while (lng > ans)
        {
            ans += get;
            cnt++;

        }
        var ansCnt = cnt / 2;
        if ( ansCnt > 1)
        {
            Console.WriteLine(ansCnt*get);
        }
        else
        {
            Console.WriteLine("0");
        }
    }
}
0