結果

問題 No.63 ポッキーゲーム
ユーザー _mi_lin__mi_lin_
提出日時 2019-04-09 14:52:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 939 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 110,240 KB
実行使用メモリ 26,960 KB
最終ジャッジ日時 2024-07-01 23:01:03
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,840 KB
testcase_01 AC 24 ms
21,940 KB
testcase_02 AC 28 ms
24,896 KB
testcase_03 WA -
testcase_04 AC 25 ms
23,984 KB
testcase_05 AC 27 ms
24,892 KB
testcase_06 AC 27 ms
24,624 KB
testcase_07 WA -
testcase_08 AC 28 ms
26,944 KB
testcase_09 AC 28 ms
24,664 KB
testcase_10 AC 27 ms
24,796 KB
testcase_11 AC 27 ms
22,708 KB
testcase_12 AC 27 ms
22,960 KB
testcase_13 AC 27 ms
26,688 KB
testcase_14 WA -
testcase_15 AC 28 ms
26,552 KB
testcase_16 AC 27 ms
24,664 KB
testcase_17 AC 28 ms
24,924 KB
testcase_18 AC 26 ms
24,796 KB
testcase_19 AC 27 ms
24,792 KB
testcase_20 AC 27 ms
24,764 KB
testcase_21 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace No63Pokkey
{
    class Program
    {
        static void Main(string[] args)
        {
            //整数の入力
            string[] number = Console.ReadLine().Split(' ');

            int L = int.Parse(number[0]);
            int K = int.Parse(number[1]);
            
            //L/2が余る場合
            double ans = 0;

            if (L % 2 != 0)
            {
                ans = K * ((L / K) / 2);
            }

            //L/2が余らない場合
            else if (L % 2 == 0)
            {
                ans = (K * ((L / K) / 2)) - K;
            }

            //表示
            if(ans <= 0)
            {
                Console.WriteLine("0");
            }
            else
            {
                Console.WriteLine(Math.Floor(ans));
            }
        }
    }
}
0