結果

問題 No.16 累乗の加算
ユーザー mannshi222jpmannshi222jp
提出日時 2022-02-12 18:30:53
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 20:41:32
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 464 ms
5,376 KB
testcase_03 AC 182 ms
5,376 KB
testcase_04 AC 227 ms
5,376 KB
testcase_05 AC 263 ms
5,376 KB
testcase_06 AC 330 ms
5,376 KB
testcase_07 AC 371 ms
5,376 KB
testcase_08 AC 424 ms
5,376 KB
testcase_09 AC 455 ms
5,376 KB
testcase_10 AC 449 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 461 ms
5,376 KB
testcase_13 AC 462 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

#define Z 1000003
int x, N;
long long int a;


int compare_int(const void *a, const void *b);

int main()
{
	int xn[100];
	long long int an[100];
	long long int sum = 0;
	long long int tmp;
	long long int ani;
	scanf("%d %d\n", &x, &N );

	for( int i = 0; i < N - 1 ; i++ ) {
		scanf("%lld ", an+i );
	}
	scanf("%lld\n", an+N-1 );

	qsort( an, N, sizeof( long long int) , compare_int );

	tmp = 1;
	ani = 0;
	for( int i = 0; i <= an[N-1]; i++ ) {
		if( i == an[ani] ) {
			sum += tmp;
			sum = sum %Z;
			ani++;
		}
		tmp = tmp * x;
		tmp = tmp % Z;
	}

	printf("%d\n", sum );


	return 0;
}

int compare_int(const void *a, const void *b)
{
    return *(long long int*)a - *(long long int*)b;
}
0