結果

問題 No.469 区間加算と一致検索の問題
ユーザー YamyukiYamyuki
提出日時 2016-12-21 10:14:10
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 4,839 ms / 5,000 ms
コード長 723 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 10,984 KB
最終ジャッジ日時 2024-12-21 17:07:32
合計ジャッジ時間 75,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 13 ms
5,248 KB
testcase_04 AC 18 ms
5,248 KB
testcase_05 AC 24 ms
5,248 KB
testcase_06 AC 32 ms
5,248 KB
testcase_07 AC 35 ms
5,248 KB
testcase_08 AC 43 ms
5,248 KB
testcase_09 AC 8 ms
5,248 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 49 ms
5,248 KB
testcase_13 AC 19 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 38 ms
5,248 KB
testcase_17 AC 29 ms
5,248 KB
testcase_18 AC 32 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 46 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1,199 ms
5,248 KB
testcase_24 AC 1,199 ms
5,248 KB
testcase_25 AC 1,202 ms
5,248 KB
testcase_26 AC 1,202 ms
5,248 KB
testcase_27 AC 1,348 ms
5,248 KB
testcase_28 AC 1,208 ms
5,248 KB
testcase_29 AC 1,196 ms
5,248 KB
testcase_30 AC 1,212 ms
5,248 KB
testcase_31 AC 1,232 ms
5,248 KB
testcase_32 AC 1,197 ms
5,248 KB
testcase_33 AC 4,839 ms
10,724 KB
testcase_34 AC 4,834 ms
10,980 KB
testcase_35 AC 4,808 ms
10,980 KB
testcase_36 AC 4,833 ms
10,984 KB
testcase_37 AC 4,797 ms
10,980 KB
testcase_38 AC 2,982 ms
10,340 KB
testcase_39 AC 3,006 ms
10,496 KB
testcase_40 AC 2,999 ms
10,496 KB
testcase_41 AC 3,069 ms
10,368 KB
testcase_42 AC 3,003 ms
10,496 KB
testcase_43 AC 2,991 ms
10,368 KB
testcase_44 AC 3,008 ms
10,472 KB
testcase_45 AC 2,975 ms
10,496 KB
testcase_46 AC 2,988 ms
10,472 KB
testcase_47 AC 2,992 ms
10,372 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 0 ms
5,248 KB
testcase_50 AC 3,017 ms
10,496 KB
testcase_51 AC 2,998 ms
10,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:20:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         scanf("%ld %ld",&n,&m);
      |         ^~~~~~~~~~~~~~~~~~~~~~
main.c:31:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |                 scanf("%c",&query);
      |                 ^~~~~~~~~~~~~~~~~~
main.c:33:25: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |                         scanf("%ld %ld %ld",&l,&r,&k);
      |                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

const unsigned long long mod=1000000007;
long long p[1000000];
long c;
typedef struct {
	long time;
	unsigned long long h;
} first;
first f[100000];

long search(){
	
}

int main(){
	long n,m,i,l,r,k;
	unsigned long long now=0;
	char query;
	scanf("%ld %ld",&n,&m);
	p[0]=1;
	for(i=0;i<n;i++){
		p[i+1]=p[i]*mod;
	}
	f[0].time=0;
	f[0].h=0;
	c=1;
	l=0;
	for(i=0;i<m;i++){
		getchar();
		scanf("%c",&query);
		if(query=='!'){ //add
			scanf("%ld %ld %ld",&l,&r,&k);
			now+=(unsigned long long)(p[r]-p[l])*k;
			for(l=0;l<c;l++){
				if(f[l].h==now) break;
			}
			if(c==l){
				f[c].time=i+1;
				f[c].h=now;
				c++;
			}
		}else{ // query=='?' question
			printf("%ld\n",f[l].time);
		}
	}
	return 0;
}
0