Submission #3715498


Source Code Expand

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

#define llong long long
#define fr(i,l,r) for(i=(l);i<(r);i++)
#define min(p,q)((p)<(q)?(p):(q))


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



int main(void)
{
	//変数の宣言
	llong int n;
	llong int m[40];
	llong int mtemp[40];
	static llong int a[100010][40];
	static llong int b[100010];
	
	//よく使う変数
	int i,j,k,l;
	int flag=0;
	llong int ans=0;
	int count=0;
	int sum=0;
	llong int temp,temp1,temp2;
	int max,min;
	int len;
	//データの読み込み
	
	scanf("%lld %lld",&n,&temp);
	
	for(i=0;i<30;i++){
		if(temp!=0){
			m[i]=temp%2;
			temp=temp/2;
		}else{
			m[i]=0;
		}
	}
	
	
	for(i=0;i<n;i++){
		scanf("%lld %lld",&temp,&b[i]);
		for(j=0;j<30;j++){
			if(temp!=0){
				a[i][j]=temp%2;
				temp=temp/2;
			}else{
				a[i][j]=0;
			}
		}
	}
	
	
//	printf("nは%dです\n", n);
//	printf("データの読み込み終了\n");
	//実際の処理
	
	for(i=0;i<30;i++){
		if(m[i]==1){
			mtemp[i]=0;
			for(j=0;j<i;j++){
				mtemp[j]=1;
			}
		}else{
			mtemp[i]=0;
			for(j=0;j<i;j++){
				mtemp[j]=m[j];
			}
		}
		for(j=i+1;j<30;j++){
			mtemp[j]=m[j];
		}
		
		temp=0;
		for(j=0;j<n;j++){
			flag=1;
			for(k=0;k<30;k++){
				if(a[j][k]>mtemp[k]) flag=0;
			}
			if(flag==1){
				temp=temp+b[j];
			}
		}
		if(ans<temp) ans=temp;
	}
	
	
//	printf("計算部分終了\n");
	//出力
	
	printf("%lld",ans);
	
//	printf("結果の出力終了\n");
	
	return 0;
	
}

Submission Info

Submission Time
Task D - IntegerotS
User rausumaru
Language C (GCC 5.4.1)
Score 0
Code Size 1616 Byte
Status WA
Exec Time 157 ms
Memory 32256 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:39:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld %lld",&n,&temp);
  ^
./Main.c:52:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%lld %lld",&temp,&b[i]);
   ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 500
Status
AC × 3
AC × 61
WA × 2
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, 49.txt, 50.txt, 51.txt, 52.txt, 53.txt, 54.txt, 55.txt, 56.txt, 57.txt, 58.txt, 59.txt, 60.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 144 ms 32128 KB
02.txt AC 146 ms 32128 KB
03.txt AC 146 ms 32128 KB
04.txt AC 146 ms 32128 KB
05.txt AC 145 ms 32256 KB
06.txt AC 145 ms 32128 KB
07.txt AC 146 ms 32256 KB
08.txt AC 145 ms 32256 KB
09.txt AC 145 ms 32128 KB
10.txt AC 147 ms 32128 KB
11.txt AC 152 ms 32128 KB
12.txt AC 152 ms 32128 KB
13.txt AC 155 ms 32128 KB
14.txt AC 155 ms 32256 KB
15.txt AC 155 ms 32128 KB
16.txt AC 152 ms 32128 KB
17.txt AC 154 ms 32128 KB
18.txt AC 154 ms 32128 KB
19.txt AC 152 ms 32256 KB
20.txt AC 152 ms 32128 KB
21.txt AC 152 ms 32256 KB
22.txt AC 153 ms 32256 KB
23.txt AC 150 ms 32256 KB
24.txt AC 149 ms 32256 KB
25.txt AC 147 ms 32128 KB
26.txt AC 151 ms 32128 KB
27.txt AC 148 ms 32128 KB
28.txt AC 147 ms 32128 KB
29.txt AC 149 ms 32128 KB
30.txt AC 150 ms 32128 KB
31.txt AC 148 ms 32128 KB
32.txt AC 147 ms 32128 KB
33.txt AC 147 ms 32256 KB
34.txt AC 145 ms 32128 KB
35.txt AC 145 ms 32256 KB
36.txt AC 145 ms 32128 KB
37.txt AC 144 ms 32256 KB
38.txt AC 144 ms 32256 KB
39.txt AC 145 ms 32256 KB
40.txt AC 146 ms 32256 KB
41.txt AC 144 ms 32256 KB
42.txt AC 143 ms 32128 KB
43.txt AC 145 ms 32256 KB
44.txt AC 144 ms 32128 KB
45.txt AC 144 ms 32256 KB
46.txt AC 144 ms 32128 KB
47.txt WA 157 ms 32128 KB
48.txt WA 157 ms 32128 KB
49.txt AC 145 ms 32128 KB
50.txt AC 142 ms 32128 KB
51.txt AC 1 ms 128 KB
52.txt AC 1 ms 128 KB
53.txt AC 1 ms 128 KB
54.txt AC 1 ms 128 KB
55.txt AC 1 ms 128 KB
56.txt AC 1 ms 128 KB
57.txt AC 1 ms 128 KB
58.txt AC 1 ms 128 KB
59.txt AC 1 ms 128 KB
60.txt AC 1 ms 128 KB
s1.txt AC 1 ms 128 KB
s2.txt AC 1 ms 128 KB
s3.txt AC 1 ms 128 KB