結果

問題 No.1010 折って重ねて
ユーザー phsplsphspls
提出日時 2020-03-29 00:14:57
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,168 bytes
コンパイル時間 1,028 ms
コンパイル使用メモリ 113,852 KB
実行使用メモリ 70,968 KB
最終ジャッジ日時 2025-01-02 12:30:02
合計ジャッジ時間 93,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
34,452 KB
testcase_01 AC 33 ms
67,896 KB
testcase_02 AC 31 ms
36,484 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 33 ms
32,468 KB
testcase_06 AC 32 ms
70,968 KB
testcase_07 AC 31 ms
34,448 KB
testcase_08 AC 36 ms
69,808 KB
testcase_09 AC 32 ms
34,572 KB
testcase_10 AC 34 ms
68,544 KB
testcase_11 AC 33 ms
36,872 KB
testcase_12 AC 33 ms
36,360 KB
testcase_13 AC 32 ms
36,608 KB
testcase_14 AC 32 ms
67,848 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 31 ms
34,688 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 33 ms
34,448 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 33 ms
34,704 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

public class P1010 {
    public static void Main() {
        var xyh = Console.ReadLine().Trim().Split(' ').Select(int.Parse).ToList();
        var x = xyh[0] * 1000L;
        var y = xyh[1] * 1000L;
        var h = xyh[2];
        var cands = new Queue<(int, int, int)>();
        var used = new HashSet<(int, int, int)>();
        var target = (x: 0, y: 0, h: h);
        cands.Enqueue(target);
        used.Add(target);
        while (cands.Count() > 0) {
            target = cands.Dequeue();
            if(x > target.h * (1 << target.x)) {
                var next = (target.x + 1, target.y, target.h * 2);
                if(!cands.Contains(next)) {
                    cands.Enqueue(next);
                    used.Add(next);
                }
            }
            if(y > target.h * (1 << target.y)) {
                var next = (target.x, target.y + 1, target.h * 2);
                if(!cands.Contains(next)) {
                    cands.Enqueue(next);
                    used.Add(next);
                }
            }
        }
        Console.WriteLine(target.x + target.y);
    }
}
0