結果

問題 No.305 鍵(2)
ユーザー NoNo
提出日時 2017-05-25 19:16:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 109,876 KB
実行使用メモリ 42,892 KB
平均クエリ数 51.08
最終ジャッジ日時 2024-07-17 01:12:05
合計ジャッジ時間 3,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
42,112 KB
testcase_01 AC 60 ms
42,744 KB
testcase_02 AC 60 ms
39,944 KB
testcase_03 AC 62 ms
42,756 KB
testcase_04 AC 63 ms
42,892 KB
testcase_05 AC 63 ms
40,784 KB
testcase_06 AC 60 ms
41,956 KB
testcase_07 AC 63 ms
40,584 KB
testcase_08 AC 62 ms
40,940 KB
testcase_09 AC 60 ms
40,964 KB
testcase_10 AC 59 ms
39,932 KB
testcase_11 AC 61 ms
40,680 KB
testcase_12 AC 61 ms
40,180 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace Yuki
{
    class Program
    {
        static void Main(string[] args)
        {
            long a = 0;
            long k = 1;
            while (true)
            {
                int ff = 0;
                for (int i = 0; i <= 9; i++)
                {
                    Console.WriteLine((a + (i * k)).ToString("0000000000"));
                    int f = int.Parse(Console.ReadLine().Split()[0]);
                    if (f == 10) return;
                    if (i == 0)
                    {
                        ff = f;
                    }
                    else
                    {
                        if (ff < f)
                        {
                            a += (i * k);
                            k *= 10;
                            break;
                        }
                        if (ff > f)
                        {
                            k *= 10;
                            break;
                        }
                    }
                }
            }
        }
    }
}
0