結果

問題 No.237 作図可能性
ユーザー mbanmban
提出日時 2017-01-13 10:54:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,947 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 111,712 KB
実行使用メモリ 26,128 KB
最終ジャッジ日時 2024-12-21 11:53:33
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,808 KB
testcase_01 AC 26 ms
23,984 KB
testcase_02 AC 27 ms
23,808 KB
testcase_03 AC 26 ms
24,076 KB
testcase_04 AC 26 ms
25,772 KB
testcase_05 AC 26 ms
23,812 KB
testcase_06 AC 26 ms
24,112 KB
testcase_07 AC 26 ms
26,128 KB
testcase_08 AC 25 ms
21,944 KB
testcase_09 AC 27 ms
23,856 KB
testcase_10 AC 26 ms
26,028 KB
testcase_11 AC 27 ms
23,732 KB
testcase_12 AC 25 ms
26,108 KB
testcase_13 AC 25 ms
23,864 KB
testcase_14 AC 26 ms
23,856 KB
testcase_15 AC 26 ms
24,108 KB
testcase_16 AC 27 ms
23,820 KB
testcase_17 AC 26 ms
24,240 KB
testcase_18 AC 26 ms
24,112 KB
testcase_19 AC 27 ms
25,852 KB
testcase_20 AC 26 ms
25,988 KB
testcase_21 AC 26 ms
26,116 KB
testcase_22 AC 25 ms
23,820 KB
testcase_23 AC 25 ms
23,856 KB
testcase_24 AC 25 ms
21,940 KB
testcase_25 AC 26 ms
25,864 KB
testcase_26 AC 26 ms
26,024 KB
testcase_27 AC 27 ms
25,836 KB
testcase_28 AC 27 ms
26,112 KB
testcase_29 AC 25 ms
24,112 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static private Magatro M = new Magatro();
    static private void Main(string[]args)
    {
        M.Scan();
        M.Solve();
    }
}

public class Scanner
{
    private string[] S;
    private int Index;
    private char Separator;

    public Scanner(char separator = ' ')
    {
        Index = 0;
        Separator = separator;
        S = new string[0];
    }

    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    }

    public string Next()
    {
        string result;
        if (Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}

public class Magatro
{
    private int A;
    readonly long[] F = new long[] { 3, 5, 17, 257, 65537 };

    public void Scan()
    {
        Scanner sc = new Scanner();
        A = sc.NextInt();
    }

    public void Solve()
    {
        int cnt = 0;
        int loop = 1 << 5;
        for(int i = 0; i < loop; i++)
        {
            int cp = i;
            long s = 1;
            for(int j = 0; j < 5; j++)
            {
                if (cp % 2 == 1)
                {
                    s *= F[j];
                }
                cp /= 2;
            }
            for(int j = 1; true; j *= 2)
            {

                if (A < s * j)
                {
                    break;
                }
                cnt++;
            }
        }
        Console.WriteLine(cnt-2);
    }

}
0