結果

問題 No.305 鍵(2)
ユーザー AreTrashAreTrash
提出日時 2016-09-03 20:03:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 3,160 ms
コンパイル使用メモリ 114,576 KB
実行使用メモリ 44,568 KB
平均クエリ数 52.15
最終ジャッジ日時 2024-07-17 00:23:45
合計ジャッジ時間 2,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
38,412 KB
testcase_01 AC 52 ms
41,120 KB
testcase_02 AC 51 ms
40,608 KB
testcase_03 AC 51 ms
40,280 KB
testcase_04 AC 51 ms
40,920 KB
testcase_05 AC 53 ms
38,664 KB
testcase_06 AC 50 ms
42,656 KB
testcase_07 AC 51 ms
40,836 KB
testcase_08 AC 52 ms
40,408 KB
testcase_09 AC 51 ms
40,584 KB
testcase_10 AC 52 ms
44,568 KB
testcase_11 AC 52 ms
40,536 KB
testcase_12 AC 53 ms
42,280 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 No305{
    public class Program{
        public static void Main(string[] args){
            var res = new int[10];

            Func<int> output = () =>{
                Console.WriteLine(string.Join("", res));
                return int.Parse(Console.ReadLine().Split(' ')[0]);
            };

            for(var i = 0; i < 10; i++){
                var x = output(); if(x == 10) return;

                for(var j = 1; j < 10; j++){
                    res[i] = j;
                    var y = output(); if(y == 10) return;

                    if(y > x){
                        break;
                    }
                    if(y < x){
                        res[i] = 0;
                        break;
                    }
                }
            }
        }
    }
}
0