結果

問題 No.1343 Dividing Digit
ユーザー keymoonkeymoon
提出日時 2021-01-17 00:21:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 1,060 ms
コンパイル使用メモリ 112,216 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-05-06 09:41:43
合計ジャッジ時間 3,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,816 KB
testcase_01 AC 28 ms
19,072 KB
testcase_02 AC 27 ms
19,072 KB
testcase_03 AC 64 ms
25,600 KB
testcase_04 AC 35 ms
20,608 KB
testcase_05 AC 41 ms
21,376 KB
testcase_06 AC 38 ms
20,864 KB
testcase_07 AC 44 ms
22,528 KB
testcase_08 AC 56 ms
24,728 KB
testcase_09 AC 61 ms
25,216 KB
testcase_10 AC 36 ms
20,480 KB
testcase_11 AC 43 ms
22,016 KB
testcase_12 AC 55 ms
24,040 KB
testcase_13 AC 53 ms
23,400 KB
testcase_14 AC 35 ms
20,608 KB
testcase_15 AC 43 ms
21,616 KB
testcase_16 AC 36 ms
20,608 KB
testcase_17 AC 61 ms
24,964 KB
testcase_18 AC 63 ms
25,728 KB
testcase_19 AC 54 ms
23,176 KB
testcase_20 AC 49 ms
23,168 KB
testcase_21 AC 61 ms
24,960 KB
testcase_22 AC 61 ms
24,984 KB
testcase_23 AC 67 ms
25,856 KB
testcase_24 AC 58 ms
23,936 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.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        var nk = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var a = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var mod = a.Sum();
        long res = 0;
        long b = 1;
        for (int i = a.Length - 1; i >= 0; i--)
        {
            res += a[i] * b;
            res %= mod;
            b *= nk[1];
            b %= mod;
        }
        Console.WriteLine(res);
    }
}
0