結果

問題 No.747 循環小数N桁目 Hard
ユーザー bluemeganebluemegane
提出日時 2018-10-20 08:01:05
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 106,932 KB
実行使用メモリ 113,076 KB
最終ジャッジ日時 2024-11-19 02:09:14
合計ジャッジ時間 203,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
30,760 KB
testcase_01 AC 31 ms
76,024 KB
testcase_02 AC 31 ms
31,248 KB
testcase_03 AC 31 ms
78,612 KB
testcase_04 AC 30 ms
30,756 KB
testcase_05 AC 31 ms
76,436 KB
testcase_06 AC 30 ms
33,056 KB
testcase_07 AC 30 ms
80,276 KB
testcase_08 AC 30 ms
32,804 KB
testcase_09 WA -
testcase_10 AC 29 ms
29,140 KB
testcase_11 AC 30 ms
78,244 KB
testcase_12 AC 30 ms
31,132 KB
testcase_13 AC 30 ms
30,880 KB
testcase_14 WA -
testcase_15 AC 31 ms
78,068 KB
testcase_16 AC 31 ms
30,756 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 30 ms
78,260 KB
testcase_20 AC 30 ms
33,168 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 30 ms
76,772 KB
testcase_24 AC 30 ms
33,176 KB
testcase_25 WA -
testcase_26 AC 30 ms
28,888 KB
testcase_27 AC 29 ms
74,696 KB
testcase_28 AC 31 ms
31,140 KB
testcase_29 AC 31 ms
78,352 KB
testcase_30 AC 30 ms
31,000 KB
testcase_31 AC 30 ms
78,848 KB
testcase_32 AC 30 ms
30,996 KB
testcase_33 TLE -
testcase_34 AC 236 ms
35,188 KB
testcase_35 AC 592 ms
106,144 KB
testcase_36 AC 1,565 ms
61,032 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 547 ms
108,264 KB
testcase_44 AC 1,768 ms
59,224 KB
testcase_45 TLE -
testcase_46 AC 1,984 ms
61,092 KB
testcase_47 TLE -
testcase_48 AC 1,147 ms
60,768 KB
testcase_49 AC 1,541 ms
60,756 KB
testcase_50 AC 986 ms
60,792 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 365 ms
99,232 KB
testcase_58 TLE -
testcase_59 AC 1,659 ms
108,764 KB
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 WA -
testcase_65 AC 60 ms
80,652 KB
testcase_66 AC 1,587 ms
61,356 KB
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 AC 675 ms
58,868 KB
testcase_71 AC 238 ms
82,540 KB
testcase_72 AC 1,594 ms
61,020 KB
testcase_73 TLE -
testcase_74 TLE -
testcase_75 AC 694 ms
61,076 KB
testcase_76 AC 974 ms
60,900 KB
testcase_77 AC 843 ms
108,544 KB
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 AC 278 ms
84,704 KB
testcase_82 AC 1,286 ms
60,796 KB
testcase_83 AC 344 ms
85,804 KB
testcase_84 TLE -
testcase_85 TLE -
testcase_86 AC 1,253 ms
54,176 KB
testcase_87 TLE -
testcase_88 AC 880 ms
53,864 KB
testcase_89 AC 1,851 ms
52,000 KB
testcase_90 TLE -
testcase_91 TLE -
testcase_92 AC 1,636 ms
51,908 KB
testcase_93 TLE -
testcase_94 TLE -
testcase_95 TLE -
testcase_96 TLE -
testcase_97 TLE -
testcase_98 TLE -
testcase_99 TLE -
testcase_100 TLE -
testcase_101 TLE -
testcase_102 TLE -
testcase_103 TLE -
testcase_104 TLE -
testcase_105 TLE -
testcase_106 TLE -
testcase_107 TLE -
testcase_108 TLE -
testcase_109 TLE -
testcase_110 TLE -
testcase_111 TLE -
testcase_112 TLE -
testcase_113 TLE -
testcase_114 TLE -
testcase_115 TLE -
testcase_116 TLE -
testcase_117 TLE -
testcase_118 TLE -
testcase_119 TLE -
testcase_120 TLE -
testcase_121 TLE -
testcase_122 TLE -
testcase_123 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Numerics;
using System;

public class Hello
{
    public static void Main()
    {
        var n = BigInteger.Parse(Console.ReadLine().Trim());
        var k = BigInteger.Parse(Console.ReadLine().Trim());
        var n2 = n % 6;
        var k2 = k % 6;
        var a = (int)BigInteger.ModPow(n2, k2, 6);
        Console.WriteLine("428571"[a]);
    }
}
0