結果

問題 No.16 累乗の加算
ユーザー suzusuzu
提出日時 2023-05-09 10:00:41
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 603 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 106,496 KB
実行使用メモリ 36,736 KB
最終ジャッジ日時 2024-11-25 22:00:23
合計ジャッジ時間 68,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
36,736 KB
testcase_01 AC 24 ms
33,944 KB
testcase_02 TLE -
testcase_03 AC 4,918 ms
36,736 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,184 ms
18,944 KB
testcase_12 TLE -
testcase_13 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Collections.Generic;
class Program
{
    static void Main(string[] args)
    {
		var line1 = Console.ReadLine().Split(' ').Select(c => int.Parse(c)).ToArray();
		int x = line1[0];
		int n = line1[1];
		
		var array = Console.ReadLine().Split(' ').Select(c => int.Parse(c)).ToArray();
		
		int remainder = 0;
		int divide = 1000003;
		
		for(int i = 0;i < n;i++)
		{
			int a = 1;
			for(int p = 0;p < array[i];p++)
			{
				a *= x;
				int b = a / divide;
				a -= b * divide;
			}
			remainder += a;
			
		}
		Console.WriteLine(remainder % divide);
    }
}
0