結果

問題 No.63 ポッキーゲーム
ユーザー nanophoto12nanophoto12
提出日時 2014-11-11 23:37:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,876 ms / 5,000 ms
コード長 534 bytes
コンパイル時間 813 ms
コンパイル使用メモリ 112,564 KB
実行使用メモリ 27,268 KB
最終ジャッジ日時 2024-06-06 12:53:29
合計ジャッジ時間 9,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,104 KB
testcase_01 AC 24 ms
27,012 KB
testcase_02 AC 22 ms
24,964 KB
testcase_03 AC 23 ms
25,008 KB
testcase_04 AC 23 ms
26,892 KB
testcase_05 AC 26 ms
25,240 KB
testcase_06 AC 27 ms
24,972 KB
testcase_07 AC 27 ms
26,880 KB
testcase_08 AC 25 ms
25,236 KB
testcase_09 AC 27 ms
26,876 KB
testcase_10 AC 42 ms
25,104 KB
testcase_11 AC 1,867 ms
25,220 KB
testcase_12 AC 60 ms
25,212 KB
testcase_13 AC 1,876 ms
25,112 KB
testcase_14 AC 62 ms
25,232 KB
testcase_15 AC 62 ms
25,360 KB
testcase_16 AC 30 ms
26,996 KB
testcase_17 AC 1,758 ms
24,980 KB
testcase_18 AC 28 ms
25,108 KB
testcase_19 AC 275 ms
27,268 KB
testcase_20 AC 54 ms
25,108 KB
testcase_21 AC 100 ms
24,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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