It is possible to making support for IE?
I think that a huge quantity of UVA user used IE.
Search found 14 matches
- Tue Sep 11, 2007 11:01 am
- Forum: Volume 3 (300-399)
- Topic: 357 - Let Me Count The Ways
- Replies: 90
- Views: 17732
- Mon Sep 10, 2007 10:43 pm
- Forum: Bugs and suggestions
- Topic: Some Suggestions
- Replies: 13
- Views: 5181
- Mon Sep 10, 2007 11:56 am
- Forum: Bugs and suggestions
- Topic: Searching for problems
- Replies: 2
- Views: 2105
- Fri Sep 07, 2007 11:46 pm
- Forum: FAQ
- Topic: New System
- Replies: 10
- Views: 10971
- Fri Sep 07, 2007 11:43 pm
- Forum: Bugs and suggestions
- Topic: May the new system be wrong?
- Replies: 4
- Views: 2766
- Fri Sep 07, 2007 11:40 pm
- Forum: FAQ
- Topic: How to see my friend's Statistics?
- Replies: 5
- Views: 10195
- Fri Sep 07, 2007 11:04 pm
- Forum: FAQ
- Topic: Borring System
- Replies: 20
- Views: 21669
Compilation error
I got Compilation error ok.
I go to my mail box there is no mail.
In this case how can i imagine which line gives Compilation error!!!!
I go to my mail box there is no mail.
In this case how can i imagine which line gives Compilation error!!!!
- Fri Sep 07, 2007 11:00 pm
- Forum: FAQ
- Topic: Borring System
- Replies: 20
- Views: 21669
WHY
Code: Select all
5900992 Naughty Sleepy Boys Bappi Sent to judge C++ 0.000 2007-09-07 18:05:20

This is what to be say wrong, solved or other?
- Fri Sep 07, 2007 4:26 pm
- Forum: FAQ
- Topic: Borring System
- Replies: 20
- Views: 21669
Borring System
The new system is so borring. :(
It takes too long time for loading. :(
It is also make a boring system that submit a code of a problem. :x
It is very difficult problems for us, whose are using low spped, time limit internet.
>> I suggest that make this site as lite as possible like old ...
It takes too long time for loading. :(
It is also make a boring system that submit a code of a problem. :x
It is very difficult problems for us, whose are using low spped, time limit internet.
>> I suggest that make this site as lite as possible like old ...
- Wed Sep 05, 2007 8:10 am
- Forum: Volume 100 (10000-10099)
- Topic: 10062 - Tell me the frequencies!
- Replies: 235
- Views: 70257
- Tue Sep 04, 2007 5:52 pm
- Forum: Volume 2 (200-299)
- Topic: 263 - Number Chains
- Replies: 45
- Views: 15847
Thanks!
Thanks for your sample input and output.
I got the error of my and fixed it and got AC
I remove my code!

I got the error of my and fixed it and got AC

I remove my code!

- Mon Sep 03, 2007 10:16 am
- Forum: Volume 2 (200-299)
- Topic: 263 - Number Chains
- Replies: 45
- Views: 15847
Why OLE
I can't figure out why output limit excessed. I try this a lot but still OLE.
Please help me.
Thanks for Help.
Please help me.
Code: Select all
ACCEPTED
- Thu Jul 12, 2007 5:01 pm
- Forum: Volume 4 (400-499)
- Topic: 406 - Prime Cuts
- Replies: 187
- Views: 60623
What is the PE in my p406
Plz help me to find out the PE.
#include<stdio.h>
int isprime(int x)
{
int i=2;
while(i*i<=x)
{
if(x%i==0)
return 0;
i++;
}
return 1;
}
void main()
{
int k=0,i,a[175],n,c=0;
while(scanf("%d %d",&n, &c)!=EOF && (n&&c))
{
printf("%d %d:",n,c);
k=0;
for(i=1; i<=n; i++)
if(isprime(i))
a[k++]=i;
if ...
#include<stdio.h>
int isprime(int x)
{
int i=2;
while(i*i<=x)
{
if(x%i==0)
return 0;
i++;
}
return 1;
}
void main()
{
int k=0,i,a[175],n,c=0;
while(scanf("%d %d",&n, &c)!=EOF && (n&&c))
{
printf("%d %d:",n,c);
k=0;
for(i=1; i<=n; i++)
if(isprime(i))
a[k++]=i;
if ...