競技プログラミング用のライブラリ    次のライブラリへ    前のライブラリへ

001-06 BigIntegerクラスのサンプル


BigIntegerクラスのサンプルです。


C#のソース

using System;
using System.Numerics;

class Program
{
    static void Main()
    {
        var InsBigInteger = new BigInteger(1);
        for (int I = 1; I <= 9999; I++) {
            InsBigInteger *= 2;
        }
        Console.WriteLine(InsBigInteger);
        // 997531558440379192441871081341792541911748・・・
    }
}