记录详情

Runtime Error


  
# 状态 耗时 内存占用
#1 Wrong Answer 1ms 212.0 KiB
#2 Wrong Answer 10ms 220.0 KiB
#3 Runtime Error 0ms 204.0 KiB

代码

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


int main()
{
	int T,n,t,t1,t2;
	int count1=0,count2=0;
	int a[1001],b[1001];
	scanf("%d",&T); 
	while(T--)
	{
		scanf("%d",&n);
		for(int i=0;i<=n;i++)
		{
			scanf("%d",&a[i]);
		}
		for(int i=0;i<=n;i++)
		{
			scanf("%d",&b[i]);
		}
		for(int i=n;i>=0;i--)
		{
			if(a[i])
			{
				count1=i;
				break;
			}
		 }
		for(int i=n;i>=0;i--)
		{
			if(b[i])
			{
				count2=i;
				break;
			}
		 } 
		if(count1>count2)
			printf("infty\n");
		else if(count1<count2)
			printf("0 1\n");
		else
		{
			t1=a[count1];
			t2=b[count2];
			if(t1<t2)
			{
				int temp;
				temp=t1;
				t1=t2;
				t2=temp;
			}
			while(t2!=0)
			{
				t=t1%t2;
				t1=t2;
				t2=t;
			}
			printf("%d %d",a[count1]/t1,b[count2]/t1);
		}
		
	}
}

信息

递交者
类型
递交
题目
P1000 hitwh 2019 新生赛 A ∞
语言
C
递交时间
2020-12-26 10:56:00
评测时间
2020-12-26 10:56:00
评测机
分数
0
总耗时
13ms
峰值内存
220.0 KiB