結果
問題 | No.1010 折って重ねて |
ユーザー | phspls |
提出日時 | 2020-03-28 23:49:29 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,195 bytes |
コンパイル時間 | 5,910 ms |
コンパイル使用メモリ | 112,572 KB |
実行使用メモリ | 30,060 KB |
最終ジャッジ日時 | 2025-01-02 12:24:05 |
合計ジャッジ時間 | 4,564 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
25,788 KB |
testcase_01 | AC | 38 ms
29,800 KB |
testcase_02 | AC | 41 ms
27,888 KB |
testcase_03 | WA | - |
testcase_04 | AC | 39 ms
29,676 KB |
testcase_05 | AC | 39 ms
27,700 KB |
testcase_06 | AC | 38 ms
27,632 KB |
testcase_07 | AC | 39 ms
27,804 KB |
testcase_08 | AC | 40 ms
29,836 KB |
testcase_09 | AC | 40 ms
28,020 KB |
testcase_10 | AC | 38 ms
28,040 KB |
testcase_11 | AC | 36 ms
27,800 KB |
testcase_12 | AC | 38 ms
27,760 KB |
testcase_13 | AC | 39 ms
27,828 KB |
testcase_14 | AC | 38 ms
27,888 KB |
testcase_15 | AC | 39 ms
25,660 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 39 ms
28,080 KB |
testcase_20 | WA | - |
testcase_21 | AC | 41 ms
29,960 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 43 ms
29,596 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 41 ms
27,696 KB |
testcase_31 | AC | 42 ms
27,892 KB |
testcase_32 | AC | 40 ms
28,016 KB |
testcase_33 | AC | 39 ms
29,732 KB |
testcase_34 | AC | 38 ms
27,916 KB |
testcase_35 | AC | 39 ms
29,964 KB |
testcase_36 | AC | 39 ms
27,576 KB |
testcase_37 | AC | 40 ms
27,784 KB |
testcase_38 | WA | - |
testcase_39 | AC | 40 ms
27,920 KB |
testcase_40 | WA | - |
testcase_41 | AC | 39 ms
27,888 KB |
testcase_42 | AC | 38 ms
27,628 KB |
testcase_43 | AC | 39 ms
29,612 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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<(long, long, int, int)>(); var used = new HashSet<(long, long, 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); } }