結果

問題 No.469 区間加算と一致検索の問題
ユーザー YamyukiYamyuki
提出日時 2016-12-21 09:51:47
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 21,376 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-05-08 09:24:28
合計ジャッジ時間 14,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 23 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 25 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 21 ms
5,376 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 24 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 657 ms
5,376 KB
testcase_24 AC 647 ms
5,376 KB
testcase_25 AC 648 ms
5,376 KB
testcase_26 AC 643 ms
5,376 KB
testcase_27 AC 666 ms
5,376 KB
testcase_28 AC 651 ms
5,376 KB
testcase_29 AC 660 ms
5,376 KB
testcase_30 AC 643 ms
5,376 KB
testcase_31 AC 644 ms
5,376 KB
testcase_32 AC 659 ms
5,376 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
	long long h;
} first;
first f[100000];

long search(){
	
}

int main(){
	long n,m,i,l,r,k;
	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);
			for(;l<=r;l++){
				now+=p[l-1]*(long long)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