結果

問題 No.63 ポッキーゲーム
ユーザー nanophoto12
提出日時 2014-11-11 23:37:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,199 ms / 5,000 ms
コード長 534 bytes
コンパイル時間 911 ms
コンパイル使用メモリ 110,032 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-12-24 04:41:32
合計ジャッジ時間 9,344 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Program
{
    public static void Main(string[] args)
    {
        var line = Console.ReadLine().Split(' ').Select(long.Parse).ToArray();
        var l = line[0];
        var k = line[1];
        bool yu = false;
        long sum = 0;
        while (l > k)
        {
            l -= k;
            if (yu)
            {
                sum += k;
            }
            yu = !yu;
        }
        Console.WriteLine(sum);
    }    
}
0