結果

問題 No.1010 折って重ねて
ユーザー bluemeganebluemegane
提出日時 2020-03-21 09:06:57
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,102 bytes
コンパイル時間 2,889 ms
コンパイル使用メモリ 109,920 KB
実行使用メモリ 33,204 KB
最終ジャッジ日時 2024-12-17 21:57:33
合計ジャッジ時間 6,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
33,204 KB
testcase_01 AC 24 ms
23,900 KB
testcase_02 AC 25 ms
24,108 KB
testcase_03 AC 25 ms
23,808 KB
testcase_04 AC 25 ms
24,068 KB
testcase_05 AC 25 ms
21,812 KB
testcase_06 AC 26 ms
23,900 KB
testcase_07 AC 26 ms
24,028 KB
testcase_08 AC 27 ms
23,852 KB
testcase_09 AC 27 ms
23,952 KB
testcase_10 AC 26 ms
23,772 KB
testcase_11 AC 27 ms
25,856 KB
testcase_12 AC 25 ms
24,076 KB
testcase_13 AC 25 ms
23,980 KB
testcase_14 AC 25 ms
25,936 KB
testcase_15 AC 25 ms
23,768 KB
testcase_16 AC 24 ms
24,152 KB
testcase_17 AC 27 ms
25,936 KB
testcase_18 AC 26 ms
23,956 KB
testcase_19 AC 26 ms
25,860 KB
testcase_20 AC 25 ms
23,952 KB
testcase_21 AC 26 ms
25,860 KB
testcase_22 AC 26 ms
23,948 KB
testcase_23 AC 25 ms
23,936 KB
testcase_24 AC 27 ms
25,936 KB
testcase_25 AC 25 ms
24,076 KB
testcase_26 AC 26 ms
23,960 KB
testcase_27 AC 24 ms
25,732 KB
testcase_28 AC 25 ms
26,064 KB
testcase_29 AC 25 ms
25,836 KB
testcase_30 AC 26 ms
23,956 KB
testcase_31 AC 26 ms
25,868 KB
testcase_32 AC 26 ms
25,856 KB
testcase_33 AC 26 ms
22,068 KB
testcase_34 AC 27 ms
23,772 KB
testcase_35 AC 25 ms
23,644 KB
testcase_36 AC 25 ms
24,080 KB
testcase_37 AC 26 ms
23,824 KB
testcase_38 AC 25 ms
23,956 KB
testcase_39 AC 26 ms
22,068 KB
testcase_40 AC 25 ms
25,852 KB
testcase_41 AC 26 ms
24,068 KB
testcase_42 AC 24 ms
24,028 KB
testcase_43 TLE -
testcase_44 AC 26 ms
25,860 KB
testcase_45 AC 27 ms
33,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = long.Parse(line[0]) * 1000L;
        var b = long.Parse(line[1]) * 1000L;
        var h = long.Parse(line[2]);
        var g1 = gcd(a, b);
        var g2 = gcd(h, g1);
        a /= g2;
        b /= g2;
        h /= g2;
        var count = 0;
        while (a > h | b > h)
        {
            if ((a < b && a > h) | (b <= a && b < h))
            {
                if (a % 2 == 0) { a /= 2; h *= 2; }
                else { b *= 2; h *= 4; }
                count++;
            }
            else if ((b <= a && b > h) | (a <= b && a < h))
            {
                if (b % 2 == 0) { b /= 2; h *= 2; }
                else { a *= 2; h *= 4; }
                count++;
            }
        }
        Console.WriteLine(count);
    }
    public static long gcd(long a, long b)
    {
        if (a < b) return gcd(b, a);
        while (b != 0)
        {
            var w = a % b;
            a = b;
            b = w;
        }
        return a;
    }
}

0