Submission #931357


Source Code Expand

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

int main(void) {
	int i, N;
	long long A[1010], T[1010];
	long long V, VA, VA1, VA2, VT, VT1, VT2;
	scanf("%d", &N);
	for (i=0;i<N;i++) scanf("%lld%lld", &T[i], &A[i]);

	VA = A[0];
	VT = T[0];
//		printf("%lld %lld\n", VT, VA);
	for (i=1;i<N;i++) {
		if (VA <= A[i] && VT <= T[i]) {
			VA = A[i]; VT = T[i];
		} else {
			VA1 = VA + (A[i] - (VA % A[i])) % A[i];
			VT1 = VA1 / A[i] * T[i];
			VT2 = VT + (T[i] - (VT % T[i])) % T[i];
			VA2 = VT2 / T[i] * A[i];
			if (VA1 < VA || VT1 < VT) { VA = VA2; VT = VT2; }
			else if (VA2 < VA || VT2 < VT) { VA = VA1; VT = VT1; }
			else if (VA1 + VT1 < VA2 + VT2) { VA = VA1; VT = VT1; }
			else { VA = VA2; VT = VT2; }
		}
//		printf("%lld %lld\n", VT, VA);
	}

	V = VA + VT;
	printf("%lld\n", V);

	return 0;
}

Submission Info

Submission Time
Task C - AtCoDeer and Election Report
User k_ashiya
Language C (GCC 5.4.1)
Score 300
Code Size 871 Byte
Status AC
Exec Time 2 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:10:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &N);
  ^
./Main.c:11:20: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  for (i=0;i<N;i++) scanf("%lld%lld", &T[i], &A[i]);
                    ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 15
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 128 KB
0_001.txt AC 1 ms 128 KB
0_002.txt AC 1 ms 128 KB
1_003.txt AC 1 ms 128 KB
1_004.txt AC 2 ms 128 KB
1_005.txt AC 1 ms 128 KB
1_006.txt AC 1 ms 128 KB
1_007.txt AC 1 ms 128 KB
1_008.txt AC 1 ms 128 KB
1_009.txt AC 1 ms 128 KB
1_010.txt AC 1 ms 128 KB
1_011.txt AC 1 ms 128 KB
1_012.txt AC 1 ms 128 KB
1_013.txt AC 2 ms 128 KB
1_014.txt AC 2 ms 128 KB