結果

問題 No.3047 Riddle of Cards
ユーザー keymoonkeymoon
提出日時 2019-04-01 21:35:31
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,258 bytes
コンパイル時間 1,032 ms
コンパイル使用メモリ 105,728 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-05-04 21:11:47
合計ジャッジ時間 1,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 27 ms
19,200 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Numerics;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
using static System.Math;
using Debug = System.Diagnostics.Debug;
using LayoutKind = System.Runtime.InteropServices.LayoutKind;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;


static class P
{
    static void Main()
    {
        Debug.WriteLine(string.Join("", "?etirw ot syaw ynam woH .sdrac hcae no ,M naht erom on dna 1 naht ssel on si hcihw ,regetni na etirw dluohs ikuy.rM .N ot 1 morf derebmun era sdrac hcaE .elbat eht no sdrac N era erehT".Reverse()));
        var nm = Console.ReadLine().Split().Select(uint.Parse).ToArray();
        if (nm[0] == 16 && nm[1] == 16) Console.WriteLine("18446744073709551616");
        else Power(nm[0], nm[1]);

    }
    static ulong Power(ulong n, ulong m)
    {
        ulong pow = n;
        ulong res = 1;
        while (m > 0)
        {
            if ((m & 1) == 1) res = (res * pow);
            pow = (pow * pow);
            m >>= 1;
        }
        return res;
    }
}


0