結果

問題 No.63 ポッキーゲーム
ユーザー sanntarohsanntaroh
提出日時 2019-04-26 04:27:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,846 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 111,728 KB
実行使用メモリ 27,256 KB
最終ジャッジ日時 2024-11-22 07:16:51
合計ジャッジ時間 11,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,996 KB
testcase_01 AC 28 ms
25,080 KB
testcase_02 AC 28 ms
24,956 KB
testcase_03 AC 27 ms
24,992 KB
testcase_04 AC 28 ms
25,256 KB
testcase_05 AC 29 ms
27,116 KB
testcase_06 AC 28 ms
25,128 KB
testcase_07 AC 29 ms
25,376 KB
testcase_08 AC 29 ms
26,912 KB
testcase_09 AC 32 ms
24,864 KB
testcase_10 AC 58 ms
25,076 KB
testcase_11 AC 2,844 ms
25,120 KB
testcase_12 AC 85 ms
25,124 KB
testcase_13 AC 2,846 ms
25,348 KB
testcase_14 AC 87 ms
25,248 KB
testcase_15 AC 86 ms
27,256 KB
testcase_16 AC 38 ms
25,124 KB
testcase_17 AC 2,662 ms
25,204 KB
testcase_18 AC 34 ms
23,092 KB
testcase_19 AC 405 ms
22,708 KB
testcase_20 AC 74 ms
27,004 KB
testcase_21 AC 149 ms
27,036 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.Linq;
using System.Collections.Generic;

namespace test20190423
{
    class Program
    {
        static void Main(string[] args)
        {
            var ss = Console.ReadLine().Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries).Select(x => long.Parse(x)).ToArray();
            long sum = 0;
            for (; ;)
            {
                ss[0] -= ss[1];
                if (ss[0] - ss[1] <= 0) break;
                ss[0] -= ss[1];
                sum += ss[1];
            }
            Console.WriteLine(sum);
            Console.ReadLine();
        }
    }
}
0