結果

問題 No.1010 折って重ねて
ユーザー phsplsphspls
提出日時 2020-03-28 22:41:04
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,205 bytes
コンパイル時間 2,875 ms
コンパイル使用メモリ 114,320 KB
実行使用メモリ 81,116 KB
最終ジャッジ日時 2025-01-02 12:21:01
合計ジャッジ時間 26,995 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
38,956 KB
testcase_01 AC 40 ms
34,520 KB
testcase_02 AC 40 ms
34,872 KB
testcase_03 TLE -
testcase_04 AC 39 ms
34,960 KB
testcase_05 AC 39 ms
81,116 KB
testcase_06 AC 39 ms
36,752 KB
testcase_07 AC 39 ms
79,568 KB
testcase_08 AC 39 ms
36,624 KB
testcase_09 AC 39 ms
78,064 KB
testcase_10 AC 38 ms
34,708 KB
testcase_11 AC 40 ms
34,900 KB
testcase_12 AC 41 ms
36,784 KB
testcase_13 AC 40 ms
29,952 KB
testcase_14 AC 39 ms
28,020 KB
testcase_15 AC 39 ms
25,912 KB
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
29,836 KB
testcase_20 TLE -
testcase_21 AC 39 ms
29,832 KB
testcase_22 WA -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 40 ms
28,020 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 38 ms
27,636 KB
testcase_31 AC 39 ms
28,180 KB
testcase_32 AC 43 ms
27,788 KB
testcase_33 AC 42 ms
29,860 KB
testcase_34 AC 39 ms
29,836 KB
testcase_35 AC 40 ms
29,968 KB
testcase_36 AC 40 ms
27,892 KB
testcase_37 AC 41 ms
29,964 KB
testcase_38 AC 39 ms
28,144 KB
testcase_39 AC 40 ms
27,704 KB
testcase_40 AC 39 ms
28,208 KB
testcase_41 AC 37 ms
28,044 KB
testcase_42 AC 39 ms
27,888 KB
testcase_43 AC 39 ms
27,888 KB
testcase_44 TLE -
testcase_45 AC 39 ms
76,796 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;

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