結果
問題 | No.1010 折って重ねて |
ユーザー | phspls |
提出日時 | 2020-03-28 23:49:29 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,195 bytes |
コンパイル時間 | 952 ms |
コンパイル使用メモリ | 111,540 KB |
実行使用メモリ | 31,232 KB |
最終ジャッジ日時 | 2024-06-10 17:55:45 |
合計ジャッジ時間 | 3,942 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
27,388 KB |
testcase_01 | AC | 31 ms
29,188 KB |
testcase_02 | AC | 30 ms
27,056 KB |
testcase_03 | WA | - |
testcase_04 | AC | 31 ms
29,280 KB |
testcase_05 | AC | 32 ms
27,276 KB |
testcase_06 | AC | 33 ms
27,240 KB |
testcase_07 | AC | 32 ms
29,288 KB |
testcase_08 | AC | 30 ms
26,992 KB |
testcase_09 | AC | 30 ms
24,752 KB |
testcase_10 | AC | 30 ms
27,248 KB |
testcase_11 | AC | 32 ms
27,116 KB |
testcase_12 | AC | 29 ms
27,244 KB |
testcase_13 | AC | 31 ms
27,140 KB |
testcase_14 | AC | 30 ms
27,116 KB |
testcase_15 | AC | 30 ms
27,164 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 31 ms
27,052 KB |
testcase_20 | WA | - |
testcase_21 | AC | 34 ms
25,012 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 32 ms
27,372 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 31 ms
27,112 KB |
testcase_31 | AC | 33 ms
27,268 KB |
testcase_32 | AC | 32 ms
27,148 KB |
testcase_33 | AC | 33 ms
27,184 KB |
testcase_34 | AC | 31 ms
26,928 KB |
testcase_35 | AC | 30 ms
26,800 KB |
testcase_36 | AC | 33 ms
26,864 KB |
testcase_37 | AC | 32 ms
27,116 KB |
testcase_38 | WA | - |
testcase_39 | AC | 31 ms
25,136 KB |
testcase_40 | WA | - |
testcase_41 | AC | 32 ms
29,028 KB |
testcase_42 | AC | 32 ms
27,372 KB |
testcase_43 | AC | 32 ms
26,864 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); } }